2010-11-11 10:05:05 +01:00
|
|
|
include(../../qtcreatorplugin.pri)
|
|
|
|
|
|
|
|
|
|
DEFINES += QMLJSTOOLS_LIBRARY
|
|
|
|
|
|
2012-10-04 14:54:59 +02:00
|
|
|
!dll {
|
|
|
|
|
DEFINES += QMLJSTOOLS_STATIC
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
2012-12-06 17:20:58 +01:00
|
|
|
$$PWD/qmljsbundleprovider.h \
|
2012-10-04 14:54:59 +02:00
|
|
|
$$PWD/qmljstoolsplugin.h \
|
|
|
|
|
$$PWD/qmljstoolsconstants.h \
|
|
|
|
|
$$PWD/qmljstoolssettings.h \
|
|
|
|
|
$$PWD/qmljscodestylepreferencesfactory.h \
|
|
|
|
|
$$PWD/qmljsmodelmanager.h \
|
|
|
|
|
$$PWD/qmljsqtstylecodeformatter.h \
|
|
|
|
|
$$PWD/qmljsrefactoringchanges.h \
|
|
|
|
|
$$PWD/qmljsfunctionfilter.h \
|
|
|
|
|
$$PWD/qmljslocatordata.h \
|
|
|
|
|
$$PWD/qmljsindenter.h \
|
|
|
|
|
$$PWD/qmljscodestylesettingspage.h \
|
|
|
|
|
$$PWD/qmljssemanticinfo.h \
|
|
|
|
|
$$PWD/qmljstools_global.h \
|
|
|
|
|
$$PWD/qmlconsolemanager.h \
|
|
|
|
|
$$PWD/qmlconsoleitemmodel.h \
|
2013-01-28 17:42:02 +01:00
|
|
|
$$PWD/qmlconsolemodel.h \
|
2012-10-04 14:54:59 +02:00
|
|
|
$$PWD/qmlconsolepane.h \
|
|
|
|
|
$$PWD/qmlconsoleview.h \
|
|
|
|
|
$$PWD/qmlconsoleitemdelegate.h \
|
|
|
|
|
$$PWD/qmlconsoleedit.h \
|
|
|
|
|
$$PWD/qmljsinterpreter.h \
|
|
|
|
|
$$PWD/qmlconsoleproxymodel.h
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
2012-12-06 17:20:58 +01:00
|
|
|
$$PWD/qmljsbundleprovider.cpp \
|
2012-10-04 14:54:59 +02:00
|
|
|
$$PWD/qmljstoolsplugin.cpp \
|
|
|
|
|
$$PWD/qmljstoolssettings.cpp \
|
|
|
|
|
$$PWD/qmljscodestylepreferencesfactory.cpp \
|
|
|
|
|
$$PWD/qmljsmodelmanager.cpp \
|
|
|
|
|
$$PWD/qmljsqtstylecodeformatter.cpp \
|
|
|
|
|
$$PWD/qmljsrefactoringchanges.cpp \
|
|
|
|
|
$$PWD/qmljsfunctionfilter.cpp \
|
|
|
|
|
$$PWD/qmljslocatordata.cpp \
|
|
|
|
|
$$PWD/qmljsindenter.cpp \
|
|
|
|
|
$$PWD/qmljscodestylesettingspage.cpp \
|
|
|
|
|
$$PWD/qmljssemanticinfo.cpp \
|
|
|
|
|
$$PWD/qmlconsolemanager.cpp \
|
|
|
|
|
$$PWD/qmlconsoleitemmodel.cpp \
|
|
|
|
|
$$PWD/qmlconsolepane.cpp \
|
|
|
|
|
$$PWD/qmlconsoleview.cpp \
|
|
|
|
|
$$PWD/qmlconsoleitemdelegate.cpp \
|
|
|
|
|
$$PWD/qmlconsoleedit.cpp \
|
|
|
|
|
$$PWD/qmljsinterpreter.cpp \
|
|
|
|
|
$$PWD/qmlconsoleproxymodel.cpp
|
|
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
|
qmljstools.qrc
|
|
|
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
|
$$PWD/qmljscodestylesettingspage.ui
|
|
|
|
|
|
|
|
|
|
equals(TEST, 1) {
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/qmljstools_test.cpp
|
|
|
|
|
}
|