forked from qt-creator/qt-creator
		
	Change-Id: Iff13147fd6541741b94f4bd2f611e05bd87a7885 Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			473 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			473 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| macdeployqt "$1" \
 | |
|         "-executable=$1/Contents/MacOS/qmlpuppet.app/Contents/MacOS/qmlpuppet" \
 | |
|         "-executable=$1/Contents/Resources/qtpromaker" \
 | |
|         "-executable=$1/Contents/MacOS/qmlprofiler" || exit 1
 | |
| qmlpuppetResources="$1/Contents/MacOS/qmlpuppet.app/Contents/Resources"
 | |
| test -d "$qmlpuppetResources" || mkdir -p "$qmlpuppetResources"
 | |
| cp "$(dirname "${BASH_SOURCE[0]}")/../dist/installer/mac/qmlpuppet_qt.conf" "$qmlpuppetResources/qt.conf"
 |