-
Notifications
You must be signed in to change notification settings - Fork 3
/
droidbattles.pro
137 lines (131 loc) · 3.71 KB
/
droidbattles.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
TEMPLATE = app
TARGET = droidbattles
QT += widgets
CONFIG += c++11
#CONFIG += sanitizer sanitize_address sanitize_undefined
windows {
CONFIG += static exceptions_off rtti_off stl_off
}
# Input
HEADERS += src/armor.h \
src/battlearea.h \
src/beam.h \
src/beamer.h \
src/botinfo.h \
src/chaff.h \
src/chafflauncher.h \
src/chiller.h \
src/cloaker.h \
src/commonsymbols.h \
src/communication.h \
src/confedit.h \
src/confstruct.h \
src/cpu.h \
src/createbot.h \
src/debugcontents.h \
src/debugwindow.h \
src/devchoice.h \
src/device.h \
src/docbrowser.h \
src/droidbattles.h \
src/engine.h \
src/explosion.h \
src/fuel.h \
src/infobox.h \
src/instruktion.h \
src/kothtournament.h \
src/matchresult.h \
src/mine.h \
src/minelayer.h \
src/missile.h \
src/myqmultilineedit.h \
src/pixbutton.h \
src/pixmapholder.h \
src/plasma.h \
src/radarmissile.h \
src/radarmissilelauncher.h \
src/ram.h \
src/repair.h \
src/resource.h \
src/robcpu.h \
src/robots.h \
src/rocket.h \
src/rocketlauncher.h \
src/scandetect.h \
src/scanner.h \
src/screenobject.h \
src/shield.h \
src/startcup.h \
src/startdeathbatt.h \
src/startsbatt.h \
src/startsurvbatt.h \
src/starttournament.h \
src/steering.h \
src/textmodebattlearea.h \
src/textmodefilemanip.h \
src/timedev.h \
src/turret.h \
src/battleconfig.h
SOURCES += src/armor.cpp \
src/battlearea.cpp \
src/beam.cpp \
src/beamer.cpp \
src/botinfo.cpp \
src/chaff.cpp \
src/chafflauncher.cpp \
src/chiller.cpp \
src/cloaker.cpp \
src/communication.cpp \
src/confedit.cpp \
src/cpu.cpp \
src/createbot.cpp \
src/debugwindow.cpp \
src/devchoice.cpp \
src/device.cpp \
src/docbrowser.cpp \
src/droidbattles.cpp \
src/engine.cpp \
src/explosion.cpp \
src/fuel.cpp \
src/infobox.cpp \
src/instruktion.cpp \
src/kothtournament.cpp \
src/main.cpp \
src/mine.cpp \
src/minelayer.cpp \
src/missile.cpp \
src/myqmultilineedit.cpp \
src/pixbutton.cpp \
src/pixmapholder.cpp \
src/plasma.cpp \
src/radarmissile.cpp \
src/radarmissilelauncher.cpp \
src/ram.cpp \
src/repair.cpp \
src/robcpu.cpp \
src/robots.cpp \
src/rocket.cpp \
src/rocketlauncher.cpp \
src/scandetect.cpp \
src/scanner.cpp \
src/screenobject.cpp \
src/shield.cpp \
src/startcup.cpp \
src/startdeathbatt.cpp \
src/startsbatt.cpp \
src/startsurvbatt.cpp \
src/starttournament.cpp \
src/steering.cpp \
src/textmodebattlearea.cpp \
src/textmodefilemanip.cpp \
src/timedev.cpp \
src/turret.cpp \
src/confstruct.cpp
RESOURCES += images.qrc \
configs.qrc \
doc.qrc
unix:!mac {
isEmpty(PREFIX):PREFIX = /usr
target.path = $$PREFIX/bin
INSTALLS += target
}