forked from qt-creator/qt-creator
37 lines
779 B
Plaintext
37 lines
779 B
Plaintext
contains(CONFIG, dll) {
|
|
DEFINES += QMLJS_BUILD_DIR
|
|
} else {
|
|
DEFINES += QML_BUILD_STATIC_LIB
|
|
}
|
|
|
|
include(parser/parser.pri)
|
|
|
|
DEPENDPATH += $$PWD
|
|
INCLUDEPATH += $$PWD/..
|
|
|
|
HEADERS += \
|
|
$$PWD/qmljs_global.h \
|
|
$$PWD/qmljsbind.h \
|
|
$$PWD/qmljsevaluate.h \
|
|
$$PWD/qmljsdocument.h \
|
|
$$PWD/qmljsscanner.h \
|
|
$$PWD/qmljsinterpreter.h \
|
|
$$PWD/qmljslink.h \
|
|
$$PWD/qmljscheck.h \
|
|
$$PWD/qmljsscopebuilder.h
|
|
|
|
SOURCES += \
|
|
$$PWD/qmljsbind.cpp \
|
|
$$PWD/qmljsevaluate.cpp \
|
|
$$PWD/qmljsdocument.cpp \
|
|
$$PWD/qmljsscanner.cpp \
|
|
$$PWD/qmljsinterpreter.cpp \
|
|
$$PWD/qmljslink.cpp \
|
|
$$PWD/qmljscheck.cpp \
|
|
$$PWD/qmljsscopebuilder.cpp
|
|
|
|
contains(QT, gui) {
|
|
SOURCES += $$PWD/qmljsindenter.cpp
|
|
HEADERS += $$PWD/qmljsindenter.h
|
|
}
|