blob: af151df7a076889a70f4e75035e5772decb437ec (
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
75
76
77
78
79
80
81
82
|
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 \
editor/nimtexteditorwidget.h \
project/nimblebuildconfiguration.h \
project/nimblebuildstep.h \
project/nimbleproject.h \
project/nimblerunconfiguration.h \
project/nimbletaskstep.h \
project/nimoutputtaskparser.h \
tools/nimlexer.h \
tools/sourcecodestream.h \
project/nimbuildsystem.h \
project/nimblebuildsystem.h \
project/nimproject.h \
project/nimbuildconfiguration.h \
project/nimcompilerbuildstep.h \
project/nimcompilercleanstep.h \
project/nimrunconfiguration.h \
editor/nimeditorfactory.h \
settings/nimcodestylesettingspage.h \
settings/nimcodestylepreferencesfactory.h \
settings/nimsettings.h \
settings/nimcodestylepreferenceswidget.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 \
editor/nimtexteditorwidget.cpp \
project/nimblebuildconfiguration.cpp \
project/nimblebuildstep.cpp \
project/nimbletaskstep.cpp \
project/nimbleproject.cpp \
project/nimblerunconfiguration.cpp \
project/nimoutputtaskparser.cpp \
tools/nimlexer.cpp \
project/nimbuildsystem.cpp \
project/nimblebuildsystem.cpp \
project/nimproject.cpp \
project/nimbuildconfiguration.cpp \
project/nimcompilerbuildstep.cpp \
project/nimcompilercleanstep.cpp \
project/nimrunconfiguration.cpp \
editor/nimeditorfactory.cpp \
settings/nimcodestylesettingspage.cpp \
settings/nimcodestylepreferencesfactory.cpp \
settings/nimsettings.cpp \
settings/nimcodestylepreferenceswidget.cpp \
project/nimtoolchain.cpp \
project/nimtoolchainfactory.cpp \
suggest/client.cpp \
suggest/clientrequests.cpp \
suggest/nimsuggest.cpp \
suggest/nimsuggestcache.cpp \
suggest/server.cpp
FORMS += \
settings/nimcodestylepreferenceswidget.ui
|