-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakeLists.txt
67 lines (64 loc) · 1.12 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
cmake_minimum_required(VERSION 2.8.3)
project(vda5050_msgs)
find_package(catkin REQUIRED COMPONENTS
message_generation
message_runtime
geometry_msgs
std_msgs
)
add_message_files(
DIRECTORY
msg
FILES
AGVPosition.msg
Action.msg
ActionParameter.msg
ActionState.msg
ActionStates.msg
BatteryState.msg
BoundingBoxReference.msg
Connection.msg
ControlPoint.msg
Edge.msg
EdgeState.msg
EdgeStates.msg
Error.msg
Errors.msg
ErrorReference.msg
InstantAction.msg
Info.msg
InfoReference.msg
Information.msg
InteractionZoneState.msg
InteractionZoneStates.msg
Load.msg
LoadDimensions.msg
Loads.msg
MapMetaData.msg
MapUpdate.msg
Node.msg
NodePosition.msg
NodeState.msg
NodeStates.msg
Order.msg
SafetyState.msg
State.msg
Trajectory.msg
Velocity.msg
Visualization.msg
Zone.msg
ZoneParameter.msg
ZonePolygonPoint.msg
ZoneUpdate.msg
)
generate_messages(
DEPENDENCIES
geometry_msgs
std_msgs
)
catkin_package(
CATKIN_DEPENDS
std_msgs
message_generation
message_runtime
)