-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
63 lines (57 loc) · 957 Bytes
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 2.8.3)
project(traadre_msgs)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g")
find_package(catkin REQUIRED
COMPONENTS
message_generation
nav_msgs
geometry_msgs
std_msgs
)
add_message_files(
FILES
Steering.msg
RobotState.msg
NamedGoal.msg
part_id.msg
GoalComplete.msg
Callout.msg
Policy.msg
OptionSelect.msg
pythonList.msg
Survey.msg
Hazard.msg
Mouse.msg
PrevTraverse.msg
TraverseDecision.msg
)
add_service_files(
FILES
GetGoalList.srv
SetCurrentGoal.srv
Teleport.srv
SetFuelLevel.srv
ShowToast.srv
GetMCSims.srv
GetPaths.srv
GetResults.srv
Bins.srv
GetPerf.srv
SetCurrentHazard.srv
)
#catkin_python_setup()
generate_messages(
DEPENDENCIES
nav_msgs
geometry_msgs
std_msgs
)
catkin_package(
INCLUDE_DIRS
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS
geometry_msgs
nav_msgs
std_msgs
message_runtime
)