forked from qt-creator/qt-creator
		
	Make it possible (again) to compile qmlobserver in share/qtcreator. However, build artifacts in there might result in a malfunctioning qtc-qmlobserver! Reviewed-by: Thorbjorn Lindeijer
		
			
				
	
	
		
			19 lines
		
	
	
		
			357 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			357 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
# This file is part of Qt Creator
 | 
						|
# It enables debugging of Qt Quick applications 
 | 
						|
 | 
						|
TEMPLATE = lib
 | 
						|
CONFIG += staticlib
 | 
						|
QT += declarative script
 | 
						|
 | 
						|
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
 | 
						|
 | 
						|
unix:QMAKE_CXXFLAGS_DEBUG += -O3
 | 
						|
 | 
						|
DESTDIR = $$PWD
 | 
						|
TARGET=QmlJSDebugger
 | 
						|
CONFIG(debug, debug|release) {
 | 
						|
   windows:TARGET=QmlJSDebuggerd
 | 
						|
}
 | 
						|
 | 
						|
include(qmljsdebugger-src.pri)
 |