forked from enigma-dev/RadialGM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RadialGM.pro
152 lines (136 loc) · 4.39 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
#-------------------------------------------------
#
# Project created by QtCreator 2017-12-02T19:38:28
#
#-------------------------------------------------
QT += core gui printsupport
CONFIG += c++11
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-2018 ENIGMA Dev Team"
# Uncomment if you want QPlainTextEdit used in place of QScintilla
#CONFIG += rgm_disable_syntaxhighlight
rgm_disable_syntaxhighlight {
SOURCES += Widgets/CodeWidgetPlain.cpp
} else {
SOURCES += Widgets/CodeWidgetScintilla.cpp
CONFIG += qscintilla2
}
# 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/protos/codegen
LIBS += -L$$PWD/Submodules/enigma-dev/CommandLine/libEGM/ \
-lEGM \
-lprotobuf \
-Wl,--rpath=$$PWD/Submodules/enigma-dev/ \
-L$$PWD/Submodules/enigma-dev/ \
-lProtocols \
-lpugixml \
-lgrpc++
SOURCES += \
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/SpriteEditor.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 \
Models/SpriteModel.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 \
Models/RepeatedProtoModel.cpp \
Components/QMenuView.cpp \
Models/TreeSortFilterProxyModel.cpp
HEADERS += \
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/SpriteEditor.h \
Editors/SettingsEditor.h \
Widgets/BackgroundView.h \
Widgets/CodeWidget.h \
Widgets/ColorPicker.h \
Widgets/AssetView.h \
Widgets/RoomView.h \
Models/TreeModel.h \
Components/Logger.h \
Components/ArtManager.h \
Models/ProtoModel.h \
Models/ImmediateMapper.h \
Models/SpriteModel.h \
Components/Utility.h \
Plugins/RGMPlugin.h \
Plugins/ServerPlugin.h \
Components/RecentFiles.h \
main.h \
Dialogs/PreferencesKeys.h \
Editors/CodeEditor.h \
Editors/ScriptEditor.h \
Models/ResourceModelMap.h \
Models/ModelMapper.h \
Models/RepeatedProtoModel.h \
Components/QMenuView.h \
Components/QMenuView_p.h \
Models/TreeSortFilterProxyModel.h
FORMS += \
MainWindow.ui \
Dialogs/PreferencesDialog.ui \
Dialogs/AddImageDialog.ui \
Editors/BackgroundEditor.ui \
Editors/ObjectEditor.ui \
Editors/FontEditor.ui \
Editors/PathEditor.ui \
Editors/TimelineEditor.ui \
Editors/RoomEditor.ui \
Editors/SpriteEditor.ui \
Editors/SoundEditor.ui \
Editors/CodeEditor.ui \
Editors/SettingsEditor.ui
RESOURCES += \
images.qrc
DISTFILES +=