forked from qt-creator/qt-creator
		
	Manually redid Qt 4.8 commit 206ebd5af21d94c3f3b49d2cb645105a63e6f5fb, to make future code synchronization easier. In order not to have to change the QmlApplicationViewer again, a compatibility class QDeclarativeViewObserver is retained that subclasses QDeclarativeViewInspector. Change-Id: Ief87ae2f8f76b1db0c9d65085e4832424b277603 Reviewed-on: http://codereview.qt.nokia.com/242 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
INCLUDEPATH += $$PWD/include
 | 
						|
 | 
						|
include($$PWD/protocol/protocol.pri)
 | 
						|
 | 
						|
HEADERS += \
 | 
						|
    $$PWD/include/jsdebuggeragent.h \
 | 
						|
    $$PWD/include/qmljsdebugger_global.h
 | 
						|
 | 
						|
SOURCES += \
 | 
						|
    $$PWD/jsdebuggeragent.cpp
 | 
						|
 | 
						|
HEADERS += \
 | 
						|
    $$PWD/include/qdeclarativeviewinspector.h \
 | 
						|
    $$PWD/include/qdeclarativeviewobserver.h \
 | 
						|
    $$PWD/include/qdeclarativeinspectorservice.h \
 | 
						|
    $$PWD/include/qmlinspectorconstants.h \
 | 
						|
    $$PWD/editor/abstractliveedittool.h \
 | 
						|
    $$PWD/editor/liveselectiontool.h \
 | 
						|
    $$PWD/editor/livelayeritem.h \
 | 
						|
    $$PWD/editor/livesingleselectionmanipulator.h \
 | 
						|
    $$PWD/editor/liverubberbandselectionmanipulator.h \
 | 
						|
    $$PWD/editor/liveselectionrectangle.h \
 | 
						|
    $$PWD/editor/liveselectionindicator.h \
 | 
						|
    $$PWD/editor/boundingrecthighlighter.h \
 | 
						|
    $$PWD/editor/subcomponentmasklayeritem.h \
 | 
						|
    $$PWD/editor/zoomtool.h \
 | 
						|
    $$PWD/editor/colorpickertool.h \
 | 
						|
    $$PWD/editor/qmltoolbar.h \
 | 
						|
    $$PWD/editor/toolbarcolorbox.h \
 | 
						|
    $$PWD/qdeclarativeviewinspector_p.h
 | 
						|
 | 
						|
SOURCES += \
 | 
						|
    $$PWD/qdeclarativeviewinspector.cpp \
 | 
						|
    $$PWD/qdeclarativeinspectorservice.cpp \
 | 
						|
    $$PWD/editor/abstractliveedittool.cpp \
 | 
						|
    $$PWD/editor/liveselectiontool.cpp \
 | 
						|
    $$PWD/editor/livelayeritem.cpp \
 | 
						|
    $$PWD/editor/livesingleselectionmanipulator.cpp \
 | 
						|
    $$PWD/editor/liverubberbandselectionmanipulator.cpp \
 | 
						|
    $$PWD/editor/liveselectionrectangle.cpp \
 | 
						|
    $$PWD/editor/liveselectionindicator.cpp \
 | 
						|
    $$PWD/editor/boundingrecthighlighter.cpp \
 | 
						|
    $$PWD/editor/subcomponentmasklayeritem.cpp \
 | 
						|
    $$PWD/editor/zoomtool.cpp \
 | 
						|
    $$PWD/editor/colorpickertool.cpp \
 | 
						|
    $$PWD/editor/qmltoolbar.cpp \
 | 
						|
    $$PWD/editor/toolbarcolorbox.cpp
 | 
						|
 | 
						|
RESOURCES += $$PWD/editor/editor.qrc
 | 
						|
 | 
						|
DEFINES += QMLJSDEBUGGER
 |