2010-11-01 17:03:46 +01:00
|
|
|
# This file is part of Qt Creator
|
|
|
|
# It enables debugging of Qt Quick applications
|
|
|
|
|
2010-07-29 12:15:55 +02:00
|
|
|
TEMPLATE = lib
|
2011-01-12 16:24:00 +01:00
|
|
|
CONFIG += staticlib
|
|
|
|
QT += declarative script
|
|
|
|
|
|
|
|
DEFINES += BUILD_QMLJSDEBUGGER_STATIC_LIB
|
2010-07-29 12:15:55 +02:00
|
|
|
|
|
|
|
unix:QMAKE_CXXFLAGS_DEBUG += -O3
|
|
|
|
|
2011-01-12 16:24:00 +01:00
|
|
|
DESTDIR = $$PWD
|
2011-02-21 11:44:34 +01:00
|
|
|
TARGET=QmlJSDebugger
|
2011-01-12 16:24:00 +01:00
|
|
|
CONFIG(debug, debug|release) {
|
2011-02-21 11:44:34 +01:00
|
|
|
windows:TARGET=QmlJSDebuggerd
|
2011-01-12 16:24:00 +01:00
|
|
|
}
|
|
|
|
|
2011-02-21 16:36:40 +01:00
|
|
|
include(qmljsdebugger-src.pri)
|