-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
142 lines (132 loc) · 3.85 KB
/
Copy pathCMakeLists.txt
File metadata and controls
142 lines (132 loc) · 3.85 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
cmake_minimum_required(VERSION 3.5)
project(spot_msgs)
if(POLICY CMP0148)
cmake_policy(SET CMP0148 OLD)
endif()
# Default to C99
if(NOT CMAKE_C_STANDARD)
set(CMAKE_C_STANDARD 99)
endif()
# 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 dependencies
find_package(ament_cmake REQUIRED)
# uncomment the following section in order to fill in
# further dependencies manually.
# find_package(<dependency> REQUIRED)
find_package(rclcpp REQUIRED)
find_package(builtin_interfaces REQUIRED)
find_package(bosdyn_api_msgs REQUIRED)
find_package(bosdyn_spot_api_msgs REQUIRED)
find_package(bosdyn_spot_cam_api_msgs REQUIRED)
find_package(common_interfaces REQUIRED)
find_package(std_msgs REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(action_msgs REQUIRED)
find_package(rosidl_default_generators REQUIRED)
rosidl_generate_interfaces(${PROJECT_NAME}
"msg/BatteryStateArray.msg"
"msg/BehaviorFault.msg"
"msg/EStopStateArray.msg"
"msg/FootStateArray.msg"
"msg/LeaseArray.msg"
"msg/LeaseOwner.msg"
"msg/Metrics.msg"
"msg/MobilityParams.msg"
"msg/SystemFault.msg"
"msg/WiFiState.msg"
"msg/BatteryState.msg"
"msg/BehaviorFaultState.msg"
"msg/EStopState.msg"
"msg/Feedback.msg"
"msg/FootState.msg"
"msg/JointCommand.msg"
"msg/Lease.msg"
"msg/LeaseResource.msg"
"msg/PowerState.msg"
"msg/SystemFaultState.msg"
"msg/GraspResult.msg"
"msg/ManipulationPhase.msg"
"srv/AcquireLease.srv"
"srv/ChoreographyRecordedStateToAnimation.srv"
"srv/ChoreographyStartRecordingState.srv"
"srv/ChoreographyStopRecordingState.srv"
"srv/GetChoreographyStatus.srv"
"srv/GetInverseKinematicSolutions.srv"
"srv/ListGraph.srv"
"srv/ListWorldObjects.srv"
"srv/ReturnLease.srv"
"srv/SetLocomotion.srv"
"srv/SetVelocity.srv"
"srv/ListAllDances.srv"
"srv/ListAllMoves.srv"
"srv/UploadAnimation.srv"
"srv/UploadSequence.srv"
"srv/ClearBehaviorFault.srv"
"srv/ListSounds.srv"
"srv/LoadSound.srv"
"srv/PlaySound.srv"
"srv/DeleteSound.srv"
"srv/GetVolume.srv"
"srv/SetVolume.srv"
"srv/ListPtz.srv"
"srv/GetPtzPosition.srv"
"srv/SetPtzPosition.srv"
"srv/InitializeLens.srv"
"srv/DeleteLogpoint.srv"
"srv/GetLogpointStatus.srv"
"srv/ListCameras.srv"
"srv/ListLogpoints.srv"
"srv/RetrieveLogpoint.srv"
"srv/RobotCommand.srv"
"srv/SetGripperAngle.srv"
"srv/StoreLogpoint.srv"
"srv/TagLogpoint.srv"
"srv/GetLEDBrightness.srv"
"srv/SetLEDBrightness.srv"
"srv/GraphNavUploadGraph.srv"
"srv/GraphNavClearGraph.srv"
"srv/GraphNavSetLocalization.srv"
"srv/GraphNavGetLocalizationPose.srv"
"srv/Dock.srv"
"srv/GetGripperCameraParameters.srv"
"srv/SetGripperCameraParameters.srv"
"srv/OverrideGraspOrCarry.srv"
"srv/SetStandHeight.srv"
"srv/SetStairsMode.srv"
"srv/MutateWorldObject.srv"
"action/ArmSurfaceContact.action"
"action/ExecuteDance.action"
"action/NavigateTo.action"
"action/RobotCommand.action"
"action/Trajectory.action"
"action/Manipulation.action"
"action/SpotGraspingPipeline.action"
DEPENDENCIES
bosdyn_api_msgs
bosdyn_spot_api_msgs
bosdyn_spot_cam_api_msgs
builtin_interfaces
common_interfaces
geometry_msgs
std_msgs
sensor_msgs
)
ament_export_dependencies(rosidl_default_runtime)
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
# the following line skips the linter which checks for copyrights
# uncomment the line when a copyright and license is not present in all source files
#set(ament_cmake_copyright_FOUND TRUE)
# the following line skips cpplint (only works in a git repo)
# uncomment the line when this package is not in a git repo
#set(ament_cmake_cpplint_FOUND TRUE)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()