-
Notifications
You must be signed in to change notification settings - Fork 30
/
AmoebotSim.pro
91 lines (85 loc) · 2.19 KB
/
AmoebotSim.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
QT += core gui qml quick
CONFIG += c++11
TARGET = AmoebotSim
TEMPLATE = app
macx:ICON = res/icon/icon.icns
QMAKE_INFO_PLIST = res/Info.plist
win32:RC_FILE = res/AmoebotSim.rc
HEADERS += \
alg/demo/ballroomdemo.h \
alg/demo/discodemo.h \
alg/demo/dynamicdemo.h \
alg/demo/metricsdemo.h \
alg/demo/tokendemo.h \
alg/aggregation.h \
alg/compression.h \
alg/edfhexagonformation.h \
alg/edfleaderelectionbyerosion.h \
alg/energyshape.h \
alg/energysharing.h \
alg/hexagonformation.h \
alg/infobjcoating.h \
alg/leaderelectionbyerosion.h \
alg/shapeformation.h \
core/amoebotparticle.h \
core/amoebotsystem.h \
core/localparticle.h \
core/metric.h \
core/node.h \
core/object.h \
core/particle.h \
core/simulator.h \
core/system.h \
helper/randomnumbergenerator.h \
main/application.h \
script/scriptengine.h \
script/scriptinterface.h \
ui/algorithm.h \
ui/glitem.h \
ui/parameterlistmodel.h \
ui/view.h \
ui/visitem.h \
alg/leaderelection.h
SOURCES += \
alg/demo/ballroomdemo.cpp \
alg/demo/discodemo.cpp \
alg/demo/dynamicdemo.cpp \
alg/demo/metricsdemo.cpp \
alg/demo/tokendemo.cpp \
alg/aggregation.cpp \
alg/compression.cpp \
alg/edfhexagonformation.cpp \
alg/edfleaderelectionbyerosion.cpp \
alg/energyshape.cpp \
alg/energysharing.cpp \
alg/hexagonformation.cpp \
alg/infobjcoating.cpp \
alg/leaderelectionbyerosion.cpp \
alg/shapeformation.cpp \
core/amoebotparticle.cpp \
core/amoebotsystem.cpp \
core/localparticle.cpp \
core/metric.cpp \
core/object.cpp \
core/particle.cpp \
core/simulator.cpp \
core/system.cpp \
helper/randomnumbergenerator.cpp \
main/application.cpp \
main/main.cpp\
script/scriptengine.cpp \
script/scriptinterface.cpp \
ui/algorithm.cpp \
ui/glitem.cpp \
ui/parameterlistmodel.cpp \
ui/view.cpp \
ui/visitem.cpp \
alg/leaderelection.cpp
RESOURCES += \
res/qml.qrc \
res/textures.qrc
OTHER_FILES += \
res/qml/A_Button.qml \
res/qml/A_Inspector.qml \
res/qml/A_ResultTextField.qml \
res/qml/main.qml