aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmljstools/qmljstools.pro
blob: 6ddfc3c97731cf7ba45996a35b142e5541e22858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
TEMPLATE = lib
TARGET = QmlJSTools
include(../../qtcreatorplugin.pri)

DEFINES += QMLJSTOOLS_LIBRARY

!dll {
    DEFINES += QMLJSTOOLS_STATIC
}

HEADERS += \
    $$PWD/qmljsbundleprovider.h \
    $$PWD/qmljstoolsplugin.h \
    $$PWD/qmljstoolsconstants.h \
    $$PWD/qmljstoolssettings.h \
    $$PWD/qmljscodestylepreferencesfactory.h \
    $$PWD/qmljsmodelmanager.h \
    $$PWD/qmljsqtstylecodeformatter.h \
    $$PWD/qmljsrefactoringchanges.h \
    $$PWD/qmljsplugindumper.h \
    $$PWD/qmljsfunctionfilter.h \
    $$PWD/qmljslocatordata.h \
    $$PWD/qmljsindenter.h \
    $$PWD/qmljscodestylesettingspage.h \
    $$PWD/qmljsfindexportedcpptypes.h \
    $$PWD/qmljssemanticinfo.h \
    $$PWD/qmljstools_global.h \
    $$PWD/qmlconsolemanager.h \
    $$PWD/qmlconsoleitemmodel.h \
    $$PWD/qmlconsolemodel.h \
    $$PWD/qmlconsolepane.h \
    $$PWD/qmlconsoleview.h \
    $$PWD/qmlconsoleitemdelegate.h \
    $$PWD/qmlconsoleedit.h \
    $$PWD/qmljsinterpreter.h \
    $$PWD/qmlconsoleproxymodel.h

SOURCES += \
    $$PWD/qmljsbundleprovider.cpp \
    $$PWD/qmljstoolsplugin.cpp \
    $$PWD/qmljstoolssettings.cpp \
    $$PWD/qmljscodestylepreferencesfactory.cpp \
    $$PWD/qmljsmodelmanager.cpp \
    $$PWD/qmljsqtstylecodeformatter.cpp \
    $$PWD/qmljsrefactoringchanges.cpp \
    $$PWD/qmljsplugindumper.cpp \
    $$PWD/qmljsfunctionfilter.cpp \
    $$PWD/qmljslocatordata.cpp \
    $$PWD/qmljsindenter.cpp \
    $$PWD/qmljscodestylesettingspage.cpp \
    $$PWD/qmljsfindexportedcpptypes.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
}