forked from ipa320/vda5050_msgs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
52 lines (49 loc) · 862 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
cmake_minimum_required(VERSION 2.8.3)
project(vda5050_msgs)
find_package(catkin REQUIRED COMPONENTS
message_generation
message_runtime
std_msgs
)
add_message_files(
DIRECTORY
msg
FILES
AGVPosition.msg
Action.msg
ActionParameter.msg
BatteryState.msg
BoundingBoxReference.msg
Connection.msg
ControlPoint.msg
CurrentAction.msg
Edge.msg
EdgeState.msg
Error.msg
ErrorReference.msg
Header.msg
InstantActions.msg
Info.msg
InfoReference.msg
Load.msg
LoadDimensions.msg
Node.msg
NodePosition.msg
NodeState.msg
Order.msg
OrderInformation.msg
SafetyState.msg
Trajectory.msg
Velocity.msg
Visualization.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
catkin_package(
CATKIN_DEPENDS
std_msgs
message_generation
message_runtime
)