This repository was archived by the owner on Nov 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnimplugin.pro
77 lines (67 loc) · 2.24 KB
/
nimplugin.pro
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
QTC_SOURCE=$$(QTC_SOURCE)
QTC_BUILD=$$(QTC_BUILD)
isEmpty(QTC_SOURCE):error(QTC_SOURCE must be set)
isEmpty(QTC_BUILD):error(QTC_BUILD must be set)
IDE_BUILD_TREE=$$QTC_BUILD
message("QTC_SOURCE is $(QTC_SOURCE)")
message("QTC_BUILD is $(QTC_BUILD)")
QTC_PLUGIN_NAME = NimPlugin
QTC_PLUGIN_DEPENDS = coreplugin texteditor projectexplorer
include($$QTC_SOURCE/src/qtcreatorplugin.pri)
CONFIG += debug
DEFINES += \
NIMPLUGIN_LIBRARY
RESOURCES += \
nimplugin.qrc
INCLUDEPATH += $$PWD
HEADERS += \
nimplugin.h \
nimpluginconstants.h \
editor/nimeditor.h \
editor/nimhighlighter.h \
editor/nimindenter.h \
tools/nimlexer.h \
tools/sourcecodestream.h \
project/nimproject.h \
project/nimprojectmanager.h \
project/nimprojectnode.h \
project/nimimportprojectwizardfactory.h \
project/nimnewprojectwizardfactory.h \
project/nimnewfilewizardfactory.h \
project/nimbuildconfiguration.h \
project/nimbuildconfigurationfactory.h \
project/nimbuildinfo.h \
project/nimcompilerbuildstep.h \
project/nimcompilerbuildstepconfigwidget.h \
project/nimcompilercleanstep.h \
project/nimcompilercleanstepconfigwidget.h \
project/nimrunconfigurationfactory.h \
project/nimrunconfiguration.h \
project/nimrunconfigurationwidget.h
SOURCES += \
nimplugin.cpp \
editor/nimeditor.cpp \
editor/nimhighlighter.cpp \
editor/nimindenter.cpp \
tools/nimlexer.cpp \
project/nimproject.cpp \
project/nimprojectmanager.cpp \
project/nimprojectnode.cpp \
project/nimimportprojectwizardfactory.cpp \
project/nimnewprojectwizardfactory.cpp \
project/nimnewfilewizardfactory.cpp \
project/nimbuildconfiguration.cpp \
project/nimbuildconfigurationfactory.cpp \
project/nimbuildinfo.cpp \
project/nimcompilerbuildstep.cpp \
project/nimcompilerbuildstepconfigwidget.cpp \
project/nimcompilercleanstep.cpp \
project/nimcompilercleanstepconfigwidget.cpp \
project/nimrunconfigurationfactory.cpp \
project/nimrunconfiguration.cpp \
project/nimrunconfigurationwidget.cpp
OTHER_FILES += README.md
FORMS += \
project/nimcompilerbuildstepconfigwidget.ui \
project/nimcompilercleanstepconfigwidget.ui \
project/nimrunconfigurationwidget.ui