-
Notifications
You must be signed in to change notification settings - Fork 9
/
motion-simulation.pro
116 lines (106 loc) · 3 KB
/
motion-simulation.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-09-12T18:19:58
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = motion-simulation
TEMPLATE = app
QT_CONFIG -= no-pkg-config
CONFIG += link_pkgconfig
PKGCONFIG += opencv4 protobuf gsl
QMAKE_CXXFLAGS += -std=c++0x
mac {
PKG_CONFIG = /usr/local/bin/pkg-config
}
PROTOFILES_CPP = proto/cpp/messages_robocup_ssl_detection.pb.cc proto/cpp/messages_robocup_ssl_geometry.pb.cc proto/cpp/messages_robocup_ssl_refbox_log.pb.cc proto/cpp/messages_robocup_ssl_wrapper.pb.cc proto/cpp/logging.pb.cc
PROTOFILES_H = proto/cpp/messages_robocup_ssl_detection.pb.h proto/cpp/messages_robocup_ssl_geometry.pb.h proto/cpp/messages_robocup_ssl_refbox_log.pb.h proto/cpp/messages_robocup_ssl_wrapper.pb.h proto/cpp/logging.pb.h
NETFILES_H = net/netraw.h net/robocup_ssl_client.h
NETFILES_CPP = net/netraw.cpp net/robocup_ssl_client.cpp
INCLUDEPATH += net/ proto/cpp/
SOURCES += main.cpp\
dialog.cpp \
pose.cpp \
renderarea.cpp \
controllers.cpp \
$${PROTOFILES_CPP} \
$${NETFILES_CPP} \
visionworker.cpp \
beliefstate.cpp \
firarenderarea.cpp \
serial.cpp \
vision-velocity.cpp \
logging.cpp \
trajectory-drawing.cpp \
tracking.cpp \
controller-wrapper.cpp \
simulation.cpp \
trajectory.cpp \
velocity-profile.cpp \
arclength-param.cpp \
splines.cpp \
alglib/alglibinternal.cpp \
alglib/alglibmisc.cpp \
alglib/ap.cpp \
alglib/dataanalysis.cpp \
alglib/diffequations.cpp \
alglib/fasttransforms.cpp \
alglib/integration.cpp \
alglib/interpolation.cpp \
alglib/linalg.cpp \
alglib/optimization.cpp \
alglib/solvers.cpp \
alglib/specialfunctions.cpp \
alglib/statistics.cpp \
controlpoint-optimization.cpp \
drawable.cpp \
collision-checking.cpp
HEADERS += dialog.h \
pose.h \
geometry.h \
renderarea.h \
controllers.h \
$${PROTOFILES_H} \
$${NETFILES_H} \
visionworker.h \
beliefstate.h \
firarenderarea.h \
serial.h \
vision-velocity.hpp \
attacker.hpp \
attacker.hpp \
constants.h \
logging.hpp \
trajectory-drawing.hpp \
tracking.hpp \
trajectory-generators.hpp \
controller-wrapper.hpp \
simulation.hpp \
trajectory.hpp \
velocity-profile.hpp \
arclength-param.hpp \
splines.hpp \
alglib/alglibinternal.h \
alglib/alglibmisc.h \
alglib/ap.h \
alglib/dataanalysis.h \
alglib/diffequations.h \
alglib/fasttransforms.h \
alglib/integration.h \
alglib/interpolation.h \
alglib/linalg.h \
alglib/optimization.h \
alglib/solvers.h \
alglib/specialfunctions.h \
alglib/statistics.h \
alglib/stdafx.h \
controlpoint-optimization.hpp \
drawable.h \
defender.hpp \
tests.hpp \
ballinterception.hpp \
goalie.hpp \
collision-checking.h
LIBS += -lgsl -lgslcblas -lprotobuf
FORMS += dialog.ui