-
Notifications
You must be signed in to change notification settings - Fork 2
/
Suassuna-Dummy.pro
162 lines (153 loc) · 6.07 KB
/
Suassuna-Dummy.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
# Qt libs to import
QT += core \
gui \
widgets \
network \
opengl
# Project configs
TEMPLATE = app
DESTDIR = ../bin
TARGET = Suassuna-Dummy
VERSION = 1.0.2
CONFIG += c++14 console
CONFIG -= app_bundle
# Temporary dirs
OBJECTS_DIR = tmp/obj
MOC_DIR = tmp/moc
UI_DIR = tmp/moc
RCC_DIR = tmp/rc
# Project libs
LIBS *= -lprotobuf -lQt5Core
# Compiling .proto files
system(echo "Compiling protobuf files" && cd include/proto && protoc --cpp_out=../ *.proto && cd ../..)
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked 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
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
# Project source files
SOURCES += \
include/grSim_Commands.pb.cc \
include/grSim_Packet.pb.cc \
include/grSim_Replacement.pb.cc \
include/messages_robocup_ssl_detection.pb.cc \
include/messages_robocup_ssl_geometry.pb.cc \
include/messages_robocup_ssl_refbox_log.pb.cc \
include/messages_robocup_ssl_robot_status.pb.cc \
include/messages_robocup_ssl_wrapper.pb.cc \
include/referee.pb.cc \
include/ssl_game_controller_auto_ref.pb.cc \
include/ssl_game_controller_common.pb.cc \
include/ssl_game_controller_team.pb.cc \
include/ssl_game_event.pb.cc \
include/ssl_game_event_2019.pb.cc \
include/ssl_referee.pb.cc \
main.cpp \
src/constants/constants.cpp \
src/entities/actuator/actuator.cpp \
src/entities/actuator/simulator/simactuator.cpp \
src/entities/coach/behavior/behavior.cpp \
src/entities/coach/behavior/gotolookto/behavior_gotolookto.cpp \
src/entities/coach/coach.cpp \
src/entities/coach/coordinator/coordinator.cpp \
src/entities/coach/coordinator/ssl/coordinator_ssl.cpp \
src/entities/coach/playbook/default/playbook_default.cpp \
src/entities/coach/playbook/default/playbook_default2.cpp \
src/entities/coach/playbook/playbook.cpp \
src/entities/coach/player/player.cpp \
src/entities/coach/role/default/role_default.cpp \
src/entities/coach/role/role.cpp \
src/entities/coach/skill/goto/skill_goto.cpp \
src/entities/coach/skill/rotateto/skill_rotateto.cpp \
src/entities/coach/skill/skill.cpp \
src/entities/entity.cpp \
src/entities/vision/filters/kalman/kalmanfilter.cpp \
src/entities/vision/filters/kalman/matrix/matrix.cpp \
src/entities/vision/filters/kalman/state/kalmanstate.cpp \
src/entities/vision/filters/loss/lossfilter.cpp \
src/entities/vision/filters/noise/noisefilter.cpp \
src/entities/vision/vision.cpp \
src/entities/world/locations/locations.cpp \
src/entities/world/world.cpp \
src/entities/world/worldmap.cpp \
src/exithandler.cpp \
src/suassuna.cpp \
src/utils/text/text.cpp \
src/utils/timer/timer.cpp \
src/utils/types/angle/angle.cpp \
src/utils/types/angularspeed/angularspeed.cpp \
src/utils/types/field/field.cpp \
src/utils/types/field/ssl/field_sslb.cpp \
src/utils/types/fieldside/fieldside.cpp \
src/utils/types/object/object.cpp \
src/utils/types/position/position.cpp \
src/utils/types/velocity/velocity.cpp
# Project header files
HEADERS += \
include/grSim_Commands.pb.h \
include/grSim_Packet.pb.h \
include/grSim_Replacement.pb.h \
include/messages_robocup_ssl_detection.pb.h \
include/messages_robocup_ssl_geometry.pb.h \
include/messages_robocup_ssl_refbox_log.pb.h \
include/messages_robocup_ssl_robot_status.pb.h \
include/messages_robocup_ssl_wrapper.pb.h \
include/referee.pb.h \
include/ssl_game_controller_auto_ref.pb.h \
include/ssl_game_controller_common.pb.h \
include/ssl_game_controller_team.pb.h \
include/ssl_game_event.pb.h \
include/ssl_game_event_2019.pb.h \
include/ssl_referee.pb.h \
src/constants/constants.h \
src/entities/actuator/actuator.h \
src/entities/actuator/simulator/simactuator.h \
src/entities/coach/basecoach.h \
src/entities/coach/behavior/behavior.h \
src/entities/coach/behavior/behaviors.h \
src/entities/coach/behavior/gotolookto/behavior_gotolookto.h \
src/entities/coach/coach.h \
src/entities/coach/coordinator/coordinator.h \
src/entities/coach/coordinator/ssl/coordinator_ssl.h \
src/entities/coach/playbook/default/playbook_default.h \
src/entities/coach/playbook/default/playbook_default2.h \
src/entities/coach/playbook/playbook.h \
src/entities/coach/playbook/playbooks.h \
src/entities/coach/player/player.h \
src/entities/coach/role/default/role_default.h \
src/entities/coach/role/role.h \
src/entities/coach/role/roles.h \
src/entities/coach/skill/goto/skill_goto.h \
src/entities/coach/skill/rotateto/skill_rotateto.h \
src/entities/coach/skill/skill.h \
src/entities/coach/skill/skills.h \
src/entities/entity.h \
src/entities/vision/filters/kalman/kalmanfilter.h \
src/entities/vision/filters/kalman/matrix/matrix.h \
src/entities/vision/filters/kalman/state/kalmanstate.h \
src/entities/vision/filters/loss/lossfilter.h \
src/entities/vision/filters/noise/noisefilter.h \
src/entities/vision/filters/visionfilters.h \
src/entities/vision/vision.h \
src/entities/world/locations/locations.h \
src/entities/world/world.h \
src/entities/world/worldmap.h \
src/exithandler.h \
src/suassuna.h \
src/utils/text/text.h \
src/utils/timer/timer.h \
src/utils/types/angle/angle.h \
src/utils/types/angularspeed/angularspeed.h \
src/utils/types/color/color.h \
src/utils/types/field/field.h \
src/utils/types/field/ssl/field_sslb.h \
src/utils/types/fieldside/fieldside.h \
src/utils/types/fieldside/side.h \
src/utils/types/object/object.h \
src/utils/types/position/position.h \
src/utils/types/velocity/velocity.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target