-
Notifications
You must be signed in to change notification settings - Fork 12
/
VSSReferee.pro
132 lines (121 loc) · 4.93 KB
/
VSSReferee.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
# Qt libs to import
QT += core \
gui \
widgets \
network \
opengl
# Project configs
TEMPLATE = app
DESTDIR = ../bin
TARGET = VSSReferee
VERSION = 2.0.0
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 -lGLU
# 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\\\"
DEFINES += PROJECT_PATH=\\\"$${PWD}\\\"
SOURCES += \
include/command.pb.cc \
include/common.pb.cc \
include/packet.pb.cc \
include/replacement.pb.cc \
include/vssref_command.pb.cc \
include/vssref_common.pb.cc \
include/vssref_placement.pb.cc \
main.cpp \
src/constants/constants.cpp \
src/refereecore.cpp \
src/soccerview/fieldview/fieldview.cpp \
src/soccerview/fieldview/gltext/gltext.cpp \
src/soccerview/soccerview.cpp \
src/utils/types/angle/angle.cpp \
src/utils/types/field/field.cpp \
src/utils/types/object/object.cpp \
src/utils/types/placedata/placedata.cpp \
src/utils/types/position/position.cpp \
src/utils/types/velocity/velocity.cpp \
src/utils/utils.cpp \
src/world/entities/entity.cpp \
src/utils/exithandler/exithandler.cpp \
src/utils/text/text.cpp \
src/utils/timer/timer.cpp \
src/world/entities/referee/checkers/ballplay/checker_ballplay.cpp \
src/world/entities/referee/checkers/checker.cpp \
src/world/entities/referee/checkers/goalie/checker_goalie.cpp \
src/world/entities/referee/checkers/halftime/checker_halftime.cpp \
src/world/entities/referee/checkers/stoppedball/checker_stuckedball.cpp \
src/world/entities/referee/checkers/twoattackers/checker_twoattackers.cpp \
src/world/entities/referee/checkers/twodefenders/checker_twodefenders.cpp \
src/world/entities/referee/referee.cpp \
src/world/entities/replacer/replacer.cpp \
src/world/entities/vision/filters/loss/lossfilter.cpp \
src/world/entities/vision/filters/noise/noisefilter.cpp \
src/world/entities/vision/filters/kalman/kalmanfilter.cpp \
src/world/entities/vision/filters/kalman/matrix/matrix.cpp \
src/world/entities/vision/filters/kalman/state/kalmanstate.cpp \
src/world/entities/vision/vision.cpp \
src/world/world.cpp
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
include/command.pb.h \
include/common.pb.h \
include/packet.pb.h \
include/replacement.pb.h \
include/vssref_command.pb.h \
include/vssref_common.pb.h \
include/vssref_placement.pb.h \
src/constants/constants.h \
src/refereecore.h \
src/soccerview/fieldview/fieldview.h \
src/soccerview/fieldview/gltext/gltext.h \
src/soccerview/soccerview.h \
src/utils/types/angle/angle.h \
src/utils/types/field/field.h \
src/utils/types/field/field_default_3v3.h \
src/utils/types/field/field_default_5v5.h \
src/utils/types/object/object.h \
src/utils/types/placedata/placedata.h \
src/utils/types/position/position.h \
src/utils/types/velocity/velocity.h \
src/utils/utils.h \
src/world/entities/entity.h \
src/utils/exithandler/exithandler.h \
src/utils/text/text.h \
src/utils/timer/timer.h \
src/world/entities/referee/checkers/ballplay/checker_ballplay.h \
src/world/entities/referee/checkers/checker.h \
src/world/entities/referee/checkers/checkers.h \
src/world/entities/referee/checkers/goalie/checker_goalie.h \
src/world/entities/referee/checkers/halftime/checker_halftime.h \
src/world/entities/referee/checkers/stoppedball/checker_stuckedball.h \
src/world/entities/referee/checkers/twoattackers/checker_twoattackers.h \
src/world/entities/referee/checkers/twodefenders/checker_twodefenders.h \
src/world/entities/referee/referee.h \
src/world/entities/replacer/replacer.h \
src/world/entities/vision/filters/loss/lossfilter.h \
src/world/entities/vision/filters/noise/noisefilter.h \
src/world/entities/vision/filters/kalman/kalmanfilter.h \
src/world/entities/vision/filters/kalman/matrix/matrix.h \
src/world/entities/vision/filters/kalman/state/kalmanstate.h \
src/world/entities/vision/vision.h \
src/world/world.h
FORMS += \
src/soccerview/soccerview.ui
RESOURCES += \
rsc/resources.qrc