summaryrefslogtreecommitdiff
path: root/src/plugins/nim/nim.pro
blob: 9a53b0ed55ee75dcb8e726b4742d9b4bed24eae8 (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
include(../../qtcreatorplugin.pri)

DEFINES += \
    NIM_LIBRARY

RESOURCES += \
    nim.qrc

INCLUDEPATH += $$PWD

HEADERS += \
    nimplugin.h \
    nimconstants.h \
    editor/nimhighlighter.h \
    editor/nimindenter.h \
    tools/nimlexer.h \
    tools/sourcecodestream.h \
    project/nimproject.h \
    project/nimprojectnode.h \
    project/nimbuildconfiguration.h \
    project/nimcompilerbuildstep.h \
    project/nimcompilerbuildstepconfigwidget.h \
    project/nimcompilercleanstep.h \
    project/nimcompilercleanstepconfigwidget.h \
    project/nimrunconfigurationfactory.h \
    project/nimrunconfiguration.h \
    project/nimrunconfigurationwidget.h \
    project/nimcompilerbuildstepfactory.h \
    project/nimcompilercleanstepfactory.h \
    project/nimbuildconfigurationwidget.h \
    editor/nimeditorfactory.h \
    settings/nimcodestylesettingspage.h \
    settings/nimcodestylepreferencesfactory.h \
    settings/nimsettings.h \
    settings/nimcodestylepreferenceswidget.h \
    project/nimtoolchain.h \
    project/nimtoolchainfactory.h

SOURCES += \
    nimplugin.cpp \
    editor/nimhighlighter.cpp \
    editor/nimindenter.cpp \
    tools/nimlexer.cpp \
    project/nimproject.cpp \
    project/nimprojectnode.cpp \
    project/nimbuildconfiguration.cpp \
    project/nimcompilerbuildstep.cpp \
    project/nimcompilerbuildstepconfigwidget.cpp \
    project/nimcompilercleanstep.cpp \
    project/nimcompilercleanstepconfigwidget.cpp \
    project/nimrunconfigurationfactory.cpp \
    project/nimrunconfiguration.cpp \
    project/nimrunconfigurationwidget.cpp \
    project/nimcompilerbuildstepfactory.cpp \
    project/nimcompilercleanstepfactory.cpp \
    project/nimbuildconfigurationwidget.cpp \
    editor/nimeditorfactory.cpp \
    settings/nimcodestylesettingspage.cpp \
    settings/nimcodestylepreferencesfactory.cpp \
    settings/nimsettings.cpp \
    settings/nimcodestylepreferenceswidget.cpp \
    project/nimtoolchain.cpp \
    project/nimtoolchainfactory.cpp

FORMS += \
    project/nimcompilerbuildstepconfigwidget.ui \
    project/nimcompilercleanstepconfigwidget.ui \
    settings/nimcodestylepreferenceswidget.ui