forked from qt-creator/qt-creator
		
	It can be helpful, is not much effort, and parts did not restrict the install target to non-OS X already. Change-Id: I3501f37f089e981cf3f72d9250c9b9161d1565d6 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
		
			
				
	
	
		
			36 lines
		
	
	
		
			933 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			933 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| QT += core gui widgets qml quick network
 | |
| QT += core-private qml-private quick-private gui-private
 | |
| 
 | |
| CONFIG += c++11
 | |
| 
 | |
| DEFINES -= QT_CREATOR
 | |
| 
 | |
| include (../instances/instances.pri)
 | |
| include (instances/instances.pri)
 | |
| include (../commands/commands.pri)
 | |
| include (../container/container.pri)
 | |
| include (../interfaces/interfaces.pri)
 | |
| include (../types/types.pri)
 | |
| include (../qmlprivategate/qmlprivategate.pri)
 | |
| 
 | |
| QT_BREAKPAD_ROOT_PATH = $$(QT_BREAKPAD_ROOT_PATH)
 | |
| !isEmpty(QT_BREAKPAD_ROOT_PATH) {
 | |
|     include($$QT_BREAKPAD_ROOT_PATH/qtbreakpad.pri)
 | |
| }
 | |
| 
 | |
| SOURCES +=  $$PWD/qml2puppetmain.cpp
 | |
| RESOURCES +=  $$PWD/../qmlpuppet.qrc
 | |
| 
 | |
| DISTFILES += Info.plist
 | |
| 
 | |
| unix:!openbsd:!osx: LIBS += -lrt # posix shared memory
 | |
| 
 | |
| osx {
 | |
|     CONFIG -= app_bundle
 | |
|     QMAKE_LFLAGS += -Wl,-sectcreate,__TEXT,__info_plist,$$system_quote($$PWD/Info.plist)
 | |
| }
 | |
| 
 | |
| osx:  target.path = $$INSTALL_LIBEXEC_PATH/qmldesigner
 | |
| else: target.path = $$INSTALL_LIBEXEC_PATH
 | |
| INSTALLS += target
 |