forked from node-robotics/ipa_navigation_msgs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
120 lines (114 loc) · 2.23 KB
/
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
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
cmake_minimum_required(VERSION 3.0.2)
project(ipa_navigation_msgs)
find_package(catkin REQUIRED COMPONENTS
ackermann_msgs
actionlib_msgs
geometry_msgs
message_generation
nav_msgs
sensor_msgs
std_msgs
uuid_msgs
visualization_msgs
)
add_message_files(
DIRECTORY msg
FILES
AnnotatedPath.msg
AreaProperty.msg
AttachedEventTrigger.msg
Collision.msg
CollisionCylinder.msg
CollisionSolvingDebug.msg
CompressedCollisions.msg
CompressedForces.msg
CompressedMapImage.msg
Constraint.msg
Constraints.msg
EBand2.msg
EBand2Bubble.msg
EBand2Metadata.msg
EventTrigger.msg
FloatStamped.msg
LTSNGScan.msg
LTSNGStatus.msg
LiftState.msg
NavigationState.msg
NavigationZone.msg
NavigationZoneList.msg
PLCAction.msg
PLCActionFeedback.msg
Point2D.msg
Point2DWithTime.msg
PolygonList.msg
RecoveryFeedback.msg
SideProperty.msg
StateTrajectory.msg
StateTrajectoryPoint.msg
TrajGenInfo.msg
TricycleDrive.msg
TricycleDriveStamped.msg
Twist2D.msg
VehicleState.msg
ZoneLease.msg
)
add_service_files(
DIRECTORY srv
FILES
ComputeDiffMap.srv
ConfigureLTS.srv
CreateTemplateImage.srv
ExportMap.srv
FinishMapModification.srv
GetLTSNGMap.srv
GetLTSNGMapImage.srv
GetMarkerArray.srv
GetZonesMatching.srv
IsPoseOnPathSegment.srv
LoadDiffMap.srv
MapTransform.srv
PostProcessPath.srv
SetIniPose.srv
SetIntermediateGoal.srv
SetMarkerArray.srv
SetUint8.srv
SpawnVirtualObstacle.srv
SplitPath.srv
Trace.srv
)
add_action_files(
DIRECTORY action
FILES
ComputePathThroughPoses.action
GlobalActionPlanner.action
MarkerDetection.action
MonitorRepause.action
MoveBase.action
NodeDetection.action
PlanDetour.action
TemplateDetection.action
TrackObjectPose.action
WaitForLease.action
)
generate_messages(DEPENDENCIES
ackermann_msgs
actionlib_msgs
geometry_msgs
nav_msgs
sensor_msgs
std_msgs
uuid_msgs
visualization_msgs
)
catkin_package(
CATKIN_DEPENDS
ackermann_msgs
actionlib_msgs
geometry_msgs
message_runtime
nav_msgs
sensor_msgs
std_msgs
uuid_msgs
visualization_msgs
)