-
Notifications
You must be signed in to change notification settings - Fork 22
/
RadialGM.pro
230 lines (212 loc) · 7.41 KB
/
RadialGM.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#-------------------------------------------------
#
# Project created by QtCreator 2017-12-02T19:38:28
#
#-------------------------------------------------
QT += core gui printsupport multimedia testlib
CONFIG += c++17
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
win32:RC_ICONS += images/icon.ico
TARGET = RadialGM
TEMPLATE = app
VERSION = 0.0.0.0
QMAKE_TARGET_COMPANY = ENIGMA Dev Team
QMAKE_TARGET_PRODUCT = RadialGM IDE
QMAKE_TARGET_DESCRIPTION = ENIGMA Development Environment
QMAKE_TARGET_COPYRIGHT = "Copyright \\251 2007-2020 ENIGMA Dev Team"
QMAKE_EXTRA_TARGETS += enigma
PRE_TARGETDEPS += enigma
enigma.commands = cd $$PWD/Submodules/enigma-dev/ && $(MAKE) emake
# Uncomment if you want QScintilla
CONFIG += rgm_enable_syntaxhighlight
rgm_enable_syntaxhighlight {
SOURCES += Widgets/CodeWidgetScintilla.cpp
CONFIG += qscintilla2
} else {
SOURCES += Widgets/CodeWidgetPlain.cpp
}
# we do this even in release mode for "Editor Diagnostics"
DEFINES += QT_MESSAGELOGCONTEXT
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += /usr/include/qt/ \
$$PWD/Submodules/enigma-dev/CommandLine/libEGM/ \
$$PWD/Submodules/enigma-dev/shared/ \
$$PWD/Submodules/enigma-dev/shared/protos/.eobjs/
LIBS += -L$$PWD/Submodules/enigma-dev/CommandLine/libEGM/ \
-lENIGMAShared \
-lEGM \
-Wl,--rpath=$$PWD/Submodules/enigma-dev/ \
-L$$PWD/Submodules/enigma-dev/ \
-lProtocols \
-lpugixml \
CONFIG += link_pkgconfig
PKGCONFIG += protobuf grpc++
SOURCES += \
Dialogs/KeybindingPreferences.cpp \
Dialogs/EventArgumentsDialog.cpp \
Dialogs/TimelineChangeMoment.cpp \
Editors/InformationEditor.cpp \
Editors/IncludeEditor.cpp \
Editors/ShaderEditor.cpp \
Editors/SpriteEditor.cpp \
Models/EventTypesListModel.cpp \
Models/EventTypesListSortFilterProxyModel.cpp \
Models/EventsListModel.cpp \
Models/MessageModel.cpp \
Models/PrimitiveModel.cpp \
Models/RepeatedMessageModel.cpp \
Models/RepeatedModel.cpp \
Models/RepeatedSortFilterProxyModel.cpp \
Utils/FieldPath.cpp \
Utils/ProtoManip.cpp \
Widgets/AssetScrollAreaBackground.cpp \
Widgets/PathView.cpp \
Widgets/SpriteSubimageListView.cpp \
Widgets/SpriteView.cpp \
Widgets/StackedCodeWidget.cpp \
main.cpp \
MainWindow.cpp \
Dialogs/PreferencesDialog.cpp \
Editors/BaseEditor.cpp \
Editors/BackgroundEditor.cpp \
Editors/ObjectEditor.cpp \
Editors/SoundEditor.cpp \
Editors/FontEditor.cpp \
Editors/PathEditor.cpp \
Editors/TimelineEditor.cpp \
Editors/RoomEditor.cpp \
Editors/SettingsEditor.cpp \
Widgets/BackgroundView.cpp \
Widgets/CodeWidget.cpp \
Widgets/ColorPicker.cpp \
Widgets/AssetView.cpp \
Widgets/RoomView.cpp \
Models/TreeModel.cpp \
Components/ArtManager.cpp \
Models/ProtoModel.cpp \
Models/ImmediateMapper.cpp \
Components/Utility.cpp \
Plugins/RGMPlugin.cpp \
Plugins/ServerPlugin.cpp \
Components/RecentFiles.cpp \
Editors/CodeEditor.cpp \
Editors/ScriptEditor.cpp \
Models/ResourceModelMap.cpp \
Models/ModelMapper.cpp \
Components/QMenuView.cpp \
Models/TreeSortFilterProxyModel.cpp
HEADERS += \
Dialogs/KeybindingPreferences.h \
Dialogs/EventArgumentsDialog.h \
Dialogs/TimelineChangeMoment.h \
Editors/InformationEditor.h \
Editors/IncludeEditor.h \
Editors/ShaderEditor.h \
Editors/SpriteEditor.h \
MainWindow.h \
Dialogs/PreferencesDialog.h \
Editors/BaseEditor.h \
Editors/BackgroundEditor.h \
Editors/ObjectEditor.h \
Editors/FontEditor.h \
Editors/PathEditor.h \
Editors/SoundEditor.h \
Editors/TimelineEditor.h \
Editors/RoomEditor.h \
Editors/SettingsEditor.h \
Models/EventTypesListModel.h \
Models/EventTypesListSortFilterProxyModel.h \
Models/EventsListModel.h \
Models/MessageModel.h \
Models/PrimitiveModel.h \
Models/RepeatedMessageModel.h \
Models/RepeatedModel.h \
Models/RepeatedPrimitiveModel.h \
Models/RepeatedSortFilterProxyModel.h \
Utils/FieldPath.h \
Utils/ProtoManip.h \
Utils/QBoilerplate.h \
Utils/SafeCasts.h \
Widgets/AssetScrollArea.h \
Widgets/AssetScrollAreaBackground.h \
Widgets/BackgroundView.h \
Widgets/CodeWidget.h \
Widgets/ColorPicker.h \
Widgets/AssetView.h \
Widgets/PathView.h \
Widgets/ResourceSelector.h \
Widgets/RoomView.h \
Models/TreeModel.h \
Components/Logger.h \
Components/ArtManager.h \
Models/ProtoModel.h \
Models/ImmediateMapper.h \
Components/Utility.h \
Plugins/RGMPlugin.h \
Plugins/ServerPlugin.h \
Components/RecentFiles.h \
Widgets/SpriteSubimageListView.h \
Widgets/SpriteView.h \
Widgets/StackedCodeWidget.h \
main.h \
Dialogs/PreferencesKeys.h \
Editors/CodeEditor.h \
Editors/ScriptEditor.h \
Models/ResourceModelMap.h \
Models/ModelMapper.h \
Components/QMenuView.h \
Components/QMenuView_p.h \
Models/TreeSortFilterProxyModel.h
FORMS += \
Dialogs/TimelineChangeMoment.ui \
Editors/InformationEditor.ui \
Editors/IncludeEditor.ui \
Editors/TimelineEditor.ui \
MainWindow.ui \
Dialogs/PreferencesDialog.ui \
Dialogs/AddImageDialog.ui \
Editors/BackgroundEditor.ui \
Editors/ObjectEditor.ui \
Editors/FontEditor.ui \
Editors/PathEditor.ui \
Editors/RoomEditor.ui \
Editors/SpriteEditor.ui \
Editors/SoundEditor.ui \
Editors/CodeEditor.ui \
Editors/SettingsEditor.ui
RESOURCES += \
images.qrc
DISTFILES += \
CMakeLists.txt \
Submodules/enigma-dev/shared/protos/Action.proto \
Submodules/enigma-dev/shared/protos/Background.proto \
Submodules/enigma-dev/shared/protos/Building.md \
Submodules/enigma-dev/shared/protos/CMakeLists.txt \
Submodules/enigma-dev/shared/protos/EventDescriptor.proto \
Submodules/enigma-dev/shared/protos/Font.proto \
Submodules/enigma-dev/shared/protos/GameInformation.proto \
Submodules/enigma-dev/shared/protos/Include.proto \
Submodules/enigma-dev/shared/protos/Makefile \
Submodules/enigma-dev/shared/protos/Object.proto \
Submodules/enigma-dev/shared/protos/Path.proto \
Submodules/enigma-dev/shared/protos/Room.proto \
Submodules/enigma-dev/shared/protos/Script.proto \
Submodules/enigma-dev/shared/protos/Settings.proto \
Submodules/enigma-dev/shared/protos/Shader.proto \
Submodules/enigma-dev/shared/protos/Sound.proto \
Submodules/enigma-dev/shared/protos/Sprite.proto \
Submodules/enigma-dev/shared/protos/Timeline.proto \
Submodules/enigma-dev/shared/protos/compiler.proto \
Submodules/enigma-dev/shared/protos/game.proto \
Submodules/enigma-dev/shared/protos/options.proto \
Submodules/enigma-dev/shared/protos/project.proto \
Submodules/enigma-dev/shared/protos/server.proto \
Submodules/enigma-dev/shared/protos/treenode.proto