summaryrefslogtreecommitdiff
path: root/src/plugins/nim/nim.pro
blob: 31b2adb1735bec20b6acfaa022252cfe5a87d954 (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
72
73
74
include(../../qtcreatorplugin.pri)

DEFINES += \
    NIM_LIBRARY

RESOURCES += \
    nim.qrc

INCLUDEPATH += $$PWD

HEADERS += \
    nimplugin.h \
    nimconstants.h \
    editor/nimcompletionassistprovider.h \
    editor/nimhighlighter.h \
    editor/nimindenter.h \
    tools/nimlexer.h \
    tools/sourcecodestream.h \
    project/nimbuildsystem.h \
    project/nimproject.h \
    project/nimprojectnode.h \
    project/nimbuildconfiguration.h \
    project/nimcompilerbuildstep.h \
    project/nimcompilerbuildstepconfigwidget.h \
    project/nimcompilercleanstep.h \
    project/nimrunconfiguration.h \
    editor/nimeditorfactory.h \
    settings/nimcodestylesettingspage.h \
    settings/nimcodestylepreferencesfactory.h \
    settings/nimsettings.h \
    settings/nimcodestylepreferenceswidget.h \
    settings/nimtoolssettingspage.h \
    project/nimtoolchain.h \
    project/nimtoolchainfactory.h \
    suggest/client.h \
    suggest/clientrequests.h \
    suggest/nimsuggest.h \
    suggest/nimsuggestcache.h \
    suggest/server.h \
    suggest/sexprlexer.h \
    suggest/sexprparser.h

SOURCES += \
    nimplugin.cpp \
    editor/nimcompletionassistprovider.cpp \
    editor/nimhighlighter.cpp \
    editor/nimindenter.cpp \
    tools/nimlexer.cpp \
    project/nimbuildsystem.cpp \
    project/nimproject.cpp \
    project/nimprojectnode.cpp \
    project/nimbuildconfiguration.cpp \
    project/nimcompilerbuildstep.cpp \
    project/nimcompilerbuildstepconfigwidget.cpp \
    project/nimcompilercleanstep.cpp \
    project/nimrunconfiguration.cpp \
    editor/nimeditorfactory.cpp \
    settings/nimcodestylesettingspage.cpp \
    settings/nimcodestylepreferencesfactory.cpp \
    settings/nimsettings.cpp \
    settings/nimcodestylepreferenceswidget.cpp \
    settings/nimtoolssettingspage.cpp \
    project/nimtoolchain.cpp \
    project/nimtoolchainfactory.cpp \
    suggest/client.cpp \
    suggest/clientrequests.cpp \
    suggest/nimsuggest.cpp \
    suggest/nimsuggestcache.cpp \
    suggest/server.cpp

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