forked from iRobotEducation/irobot_create_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
71 lines (61 loc) · 1.57 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
cmake_minimum_required(VERSION 3.5)
project(irobot_create_msgs)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
find_package(ament_cmake REQUIRED)
find_package(rosidl_default_generators REQUIRED)
find_package(action_msgs REQUIRED)
find_package(builtin_interfaces REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(std_msgs REQUIRED)
set(action_files
"action/AudioNoteSequence.action"
"action/Dock.action"
"action/DriveArc.action"
"action/DriveDistance.action"
"action/LedAnimation.action"
"action/NavigateToPosition.action"
"action/RotateAngle.action"
"action/Undock.action"
"action/WallFollow.action"
)
set(msg_files
"msg/AudioNote.msg"
"msg/AudioNoteVector.msg"
"msg/Button.msg"
"msg/DockStatus.msg"
"msg/HazardDetection.msg"
"msg/HazardDetectionVector.msg"
"msg/InterfaceButtons.msg"
"msg/IrIntensity.msg"
"msg/IrIntensityVector.msg"
"msg/IrOpcode.msg"
"msg/KidnapStatus.msg"
"msg/LedColor.msg"
"msg/LightringLeds.msg"
"msg/Mouse.msg"
"msg/SlipStatus.msg"
"msg/StopStatus.msg"
"msg/WheelStatus.msg"
"msg/WheelTicks.msg"
"msg/WheelVels.msg"
)
set(srv_files
"srv/EStop.srv"
"srv/ResetPose.srv"
"srv/RobotPower.srv"
)
rosidl_generate_interfaces(${PROJECT_NAME}
${action_files}
${msg_files}
${srv_files}
DEPENDENCIES action_msgs builtin_interfaces geometry_msgs std_msgs
ADD_LINTER_TESTS
)
ament_export_dependencies(rosidl_default_runtime)
ament_package()