-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflame_visualiser.pro
107 lines (97 loc) · 2.38 KB
/
flame_visualiser.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
#-------------------------------------------------
#
# Project created by QtCreator 2011-06-23T12:47:15
#
#-------------------------------------------------
QT += core gui
QT += opengl
# Qt 4.8 Doesn't include OpenGL Glu library automatically on linux
unix:!macx:LIBS *= -lGLU
TEMPLATE = app
TARGET = "FLAME Visualiser"
# Qt 4.7 Doesn't like spaces in target name on windows
QT_VERSION = $$[QT_VERSION]
QT_VERSION = $$split(QT_VERSION, ".")
QT_VER_MAJ = $$member(QT_VERSION, 0)
QT_VER_MIN = $$member(QT_VERSION, 1)
lessThan(QT_VER_MIN, 8):lessThan(QT_VER_MAJ, 5) {
win32:TARGET = FLAME_Visualiser
}
macx:ICON = flame_icon_v.icns
win32:RC_FILE = flame-v.rc
SOURCES += main.cpp
test {
SOURCES -= main.cpp
SOURCES += test_flame_visualiser.cpp
CONFIG += qtestlib
QMAKE_CXXFLAGS +=-DTESTBUILD
}
SOURCES += mainwindow.cpp \
glwidget.cpp \
zeroxmlreader.cpp \
visualsettingsmodel.cpp \
visualsettingsitem.cpp \
configxmlreader.cpp \
agenttypedelegate.cpp \
shapedelegate.cpp \
shapedialog.cpp \
shape.cpp \
colourdelegate.cpp \
positiondelegate.cpp \
positiondialog.cpp \
position.cpp \
condition.cpp \
conditiondelegate.cpp \
conditiondialog.cpp \
graphsettingsmodel.cpp \
graphsettingsitem.cpp \
graphwidget.cpp \
enableddelegate.cpp \
graphdelegate.cpp \
imagesdialog.cpp \
timedialog.cpp \
agentdialog.cpp \
restrictaxesdialog.cpp \
iterationinfodialog.cpp \
timescale.cpp
HEADERS += mainwindow.h \
glwidget.h \
zeroxmlreader.h \
agent.h \
visualsettingsmodel.h \
visualsettingsitem.h \
configxmlreader.h \
agenttype.h \
agenttypedelegate.h \
shapedelegate.h \
shapedialog.h \
shape.h \
colourdelegate.h \
positiondelegate.h \
positiondialog.h \
position.h \
condition.h \
conditiondelegate.h \
conditiondialog.h \
graphsettingsmodel.h \
graphsettingsitem.h \
graphwidget.h \
enableddelegate.h \
graphdelegate.h \
imagesdialog.h \
timedialog.h \
timescale.h \
agentdialog.h \
restrictaxesdialog.h \
dimension.h \
iterationinfodialog.h \
ruleagent.h
FORMS += mainwindow.ui \
positiondialog.ui \
conditiondialog.ui \
imagesdialog.ui \
shapedialog.ui \
timedialog.ui \
agentdialog.ui \
restrictaxesdialog.ui \
iterationinfodialog.ui