2009-12-02 17:59:27 +01:00
|
|
|
contains(CONFIG, dll) {
|
2010-01-18 16:15:23 +01:00
|
|
|
DEFINES += QMLJS_BUILD_DIR
|
2009-12-02 17:59:27 +01:00
|
|
|
} else {
|
|
|
|
|
DEFINES += QML_BUILD_STATIC_LIB
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
include(parser/parser.pri)
|
2010-01-18 14:12:04 +01:00
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
INCLUDEPATH += $$PWD/..
|
2009-12-02 17:59:27 +01:00
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
HEADERS += \
|
2010-01-18 16:15:23 +01:00
|
|
|
$$PWD/qmljs_global.h \
|
|
|
|
|
$$PWD/qmljsbind.h \
|
2010-02-15 11:52:39 +01:00
|
|
|
$$PWD/qmljsevaluate.h \
|
2010-01-18 16:15:23 +01:00
|
|
|
$$PWD/qmljsdocument.h \
|
|
|
|
|
$$PWD/qmljsscanner.h \
|
2010-01-28 14:53:53 +01:00
|
|
|
$$PWD/qmljsinterpreter.h \
|
2010-02-16 10:36:09 +01:00
|
|
|
$$PWD/qmljslink.h \
|
2010-02-19 15:55:11 +01:00
|
|
|
$$PWD/qmljscheck.h \
|
2010-04-26 15:12:27 +02:00
|
|
|
$$PWD/qmljsscopebuilder.h \
|
2010-04-28 13:28:36 +02:00
|
|
|
$$PWD/qmljslineinfo.h \
|
2010-05-20 15:41:30 +02:00
|
|
|
$$PWD/qmljscompletioncontextfinder.h \
|
2010-06-09 15:56:03 +02:00
|
|
|
$$PWD/qmljsmodelmanagerinterface.h \
|
2010-07-06 10:39:32 +02:00
|
|
|
$$PWD/qmljsicontextpane.h \
|
2010-06-30 17:51:21 +02:00
|
|
|
$$PWD/qmljspropertyreader.h \
|
2010-07-08 11:30:44 +02:00
|
|
|
$$PWD/qmljsrewriter.h \
|
2010-07-21 14:26:25 +02:00
|
|
|
$$PWD/qmljsicons.h \
|
2011-02-08 11:01:37 +01:00
|
|
|
$$PWD/qmljsdelta.h \
|
2011-05-04 11:12:45 +02:00
|
|
|
$$PWD/qmljstypedescriptionreader.h \
|
2011-07-01 12:11:02 +02:00
|
|
|
$$PWD/qmljsscopeastpath.h \
|
2011-07-01 13:51:53 +02:00
|
|
|
$$PWD/qmljsvalueowner.h \
|
2011-07-12 14:55:27 +02:00
|
|
|
$$PWD/qmljscontext.h \
|
2011-10-07 14:04:06 +02:00
|
|
|
$$PWD/qmljsscopechain.h \
|
|
|
|
|
$$PWD/qmljsutils.h
|
2009-12-02 17:59:27 +01:00
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
SOURCES += \
|
2010-01-18 16:15:23 +01:00
|
|
|
$$PWD/qmljsbind.cpp \
|
2010-02-15 11:52:39 +01:00
|
|
|
$$PWD/qmljsevaluate.cpp \
|
2010-01-18 16:15:23 +01:00
|
|
|
$$PWD/qmljsdocument.cpp \
|
|
|
|
|
$$PWD/qmljsscanner.cpp \
|
2010-01-26 14:50:52 +01:00
|
|
|
$$PWD/qmljsinterpreter.cpp \
|
2010-02-16 10:36:09 +01:00
|
|
|
$$PWD/qmljslink.cpp \
|
2010-02-19 15:55:11 +01:00
|
|
|
$$PWD/qmljscheck.cpp \
|
2010-04-26 15:12:27 +02:00
|
|
|
$$PWD/qmljsscopebuilder.cpp \
|
2010-04-28 13:28:36 +02:00
|
|
|
$$PWD/qmljslineinfo.cpp \
|
2010-05-20 15:41:30 +02:00
|
|
|
$$PWD/qmljscompletioncontextfinder.cpp \
|
2010-06-30 14:25:09 +02:00
|
|
|
$$PWD/qmljsmodelmanagerinterface.cpp \
|
2010-06-30 17:51:21 +02:00
|
|
|
$$PWD/qmljspropertyreader.cpp \
|
2010-07-08 11:30:44 +02:00
|
|
|
$$PWD/qmljsrewriter.cpp \
|
2010-07-21 14:26:25 +02:00
|
|
|
$$PWD/qmljsicons.cpp \
|
2011-02-08 11:01:37 +01:00
|
|
|
$$PWD/qmljsdelta.cpp \
|
2011-05-04 11:12:45 +02:00
|
|
|
$$PWD/qmljstypedescriptionreader.cpp \
|
2011-07-01 12:11:02 +02:00
|
|
|
$$PWD/qmljsscopeastpath.cpp \
|
2011-07-01 13:51:53 +02:00
|
|
|
$$PWD/qmljsvalueowner.cpp \
|
2011-07-12 14:55:27 +02:00
|
|
|
$$PWD/qmljscontext.cpp \
|
2011-10-07 14:04:06 +02:00
|
|
|
$$PWD/qmljsscopechain.cpp \
|
|
|
|
|
$$PWD/qmljsutils.cpp
|
2010-07-08 11:30:44 +02:00
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
|
$$PWD/qmljs.qrc
|
2009-12-02 17:59:27 +01:00
|
|
|
|
2010-04-29 15:52:17 +02:00
|
|
|
OTHER_FILES += \
|
|
|
|
|
$$PWD/parser/qmljs.g
|
|
|
|
|
|
2010-01-18 14:12:04 +01:00
|
|
|
contains(QT, gui) {
|
2010-07-07 11:45:18 +02:00
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/qmljsindenter.cpp \
|
|
|
|
|
$$PWD/qmljscodeformatter.cpp
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
$$PWD/qmljsindenter.h \
|
|
|
|
|
$$PWD/qmljscodeformatter.h
|
2010-01-18 14:12:04 +01:00
|
|
|
}
|