forked from qt-creator/qt-creator
		
	Google Breakpad (https://chromium.googlesource.com/breakpad/breakpad) is a widely used crash handler framework, e.g. by Mozilla and Chromium. It is providing a platform neutral solution to generate mini dumps, collect debug information and generate stack traces from those. Done-with: Orgad Shaneh <orgad.shaneh@audiocodes.com> Change-Id: I09382e7db0dc9e29b228e7b554fda7b6f5684349 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
		
			
				
	
	
		
			31 lines
		
	
	
		
			794 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			794 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)
 | 
						|
 | 
						|
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
 |