forked from RoboCup-SSL/grSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Simulator.pro
73 lines (73 loc) · 1.98 KB
/
Simulator.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
# -------------------------------------------------
# Project created by QtCreator 2009-11-18T18:56:10
# -------------------------------------------------
QT += network \
opengl
TARGET = grSim
TEMPLATE = app
SOURCES += main.cpp \
mainwindow.cpp \
glwidget.cpp \
Graphics/graphics.cpp \
Physics/pworld.cpp \
Physics/pobject.cpp \
Physics/pball.cpp \
Physics/pground.cpp \
sslworld.cpp \
Physics/pfixedbox.cpp \
Physics/pcylinder.cpp \
robot.cpp \
Physics/pbox.cpp \
proto/netraw.cpp \
proto/robocup_ssl_server.cpp \
proto/messages_robocup_ssl_wrapper.pb.cc \
proto/messages_robocup_ssl_refbox_log.pb.cc \
proto/messages_robocup_ssl_geometry.pb.cc \
proto/messages_robocup_ssl_detection.pb.cc \
Physics/pray.cpp \
configwidget.cpp \
statuswidget.cpp \
logger.cpp \
robotwidget.cpp \
getpositionwidget.cpp \
proto/grSim_Replacement.pb.cc \
proto/grSim_Commands.pb.cc \
proto/grSim_Packet.pb.cc
HEADERS += mainwindow.h \
glwidget.h \
Graphics/graphics.h \
Physics/pworld.h \
Physics/pobject.h \
Physics/pball.h \
Physics/pground.h \
sslworld.h \
Physics/pfixedbox.h \
Physics/pcylinder.h \
robot.h \
Physics/pbox.h \
proto/netraw.h \
proto/robocup_ssl_server.h \
proto/messages_robocup_ssl_refbox_log.pb.h \
proto/messages_robocup_ssl_geometry.pb.h \
proto/messages_robocup_ssl_detection.pb.h \
proto/messages_robocup_ssl_wrapper.pb.h \
Physics/pray.h \
configwidget.h \
statuswidget.h \
logger.h \
robotwidget.h \
getpositionwidget.h \
proto/grSim_Replacement.pb.h \
proto/grSim_Commands.pb.h \
proto/grSim_Packet.pb.h \
common.h
QMAKE_CXXFLAGS += `pkg-config ode protobuf --cflags`
LIBS += -L$$PWD/libs/ \
`pkg-config ode protobuf --libs` \
-lvartypes
MOC_DIR = $$PWD/objs
OBJECTS_DIR = $$PWD/objs
DESTDIR = $$PWD/bin
INCLUDEPATH += VarTypes \
/usr/local/include
RESOURCES += textures.qrc