forked from tum-fml/vda5050_msgs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
82 lines (79 loc) · 1.44 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
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
AgvAction.msg
AgvGeometry.msg
BatteryState.msg
BoundingBoxReference.msg
Connection.msg
ControlPoint.msg
Edge.msg
EdgeState.msg
EdgeStates.msg
Error.msg
Errors.msg
ErrorReference.msg
Factsheet.msg
InstantAction.msg
Info.msg
InfoReference.msg
Information.msg
InteractionZoneState.msg
InteractionZoneStates.msg
Load.msg
LoadDimensions.msg
Loads.msg
LoadSet.msg
LoadSpecification.msg
MapMetaData.msg
MapUpdate.msg
MaxArrayLens.msg
MaxStringLens.msg
Node.msg
NodePosition.msg
NodeState.msg
NodeStates.msg
OptionalParameter.msg
Order.msg
PhysicalParameters.msg
Position.msg
ProtocolFeatures.msg
ProtocolLimits.msg
SafetyState.msg
State.msg
Timing.msg
Trajectory.msg
TypeSpecification.msg
Velocity.msg
Visualization.msg
WheelDefinition.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
)