-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
76 lines (72 loc) · 2.88 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
cmake_minimum_required(VERSION 3.5)
project(spatz_interfaces)
if (NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
endif ()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rosidl_default_generators REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(builtin_interfaces REQUIRED)
find_package(std_msgs REQUIRED)
rosidl_generate_interfaces(${PROJECT_NAME}
"msg/AbstractionInterface/AbstractionInterfaceList.msg"
"msg/AbstractionInterface/Types/AbstractionBarredArea.msg"
"msg/AbstractionInterface/Types/AbstractionCrosswalk.msg"
"msg/AbstractionInterface/Types/AbstractionFloorSign.msg"
"msg/AbstractionInterface/Types/AbstractionIntersection.msg"
"msg/AbstractionInterface/Types/AbstractionObstacle.msg"
"msg/AbstractionInterface/Types/AbstractionParkSpot.msg"
"msg/AbstractionInterface/Types/AbstractionPedIsle.msg"
"msg/AbstractionInterface/Types/AbstractionSign.msg"
"msg/BirdEyeParam.msg"
"msg/ControlSetpoint.msg"
"msg/ControlStatus.msg"
"msg/DetectionInterface/DetectionInterfaceList.msg"
"msg/DetectionInterface/Types/BarredArea.msg"
"msg/DetectionInterface/Types/FloorSign.msg"
"msg/DetectionInterface/Types/IntersectionPoint.msg"
"msg/DetectionInterface/Types/Obstacle.msg"
"msg/DetectionInterface/Types/ParkSpot.msg"
"msg/DetectionInterface/Types/PedIsle.msg"
"msg/DetectionInterface/Types/Pedestrian.msg"
"msg/DetectionInterface/Types/Sign.msg"
"msg/Environment.msg"
"msg/ExtrinsicCalib.msg"
"msg/HardwareIn.msg"
"msg/ILQRTrajectory/ILQRTrajectory.msg"
"msg/ILQRTrajectory/ILQRTrajectoryControl.msg"
"msg/ILQRTrajectory/ILQRTrajectoryControlGain.msg"
"msg/ILQRTrajectory/ILQRTrajectoryCovariance.msg"
"msg/ILQRTrajectory/ILQRTrajectoryState.msg"
"msg/Interfaces/Classification.msg"
"msg/Interfaces/Detection.msg"
"msg/Interfaces/Expansion.msg"
"msg/Interfaces/Locatable.msg"
"msg/Interfaces/LocatableWithCovariance.msg"
"msg/IntersectionOut.msg"
"msg/Lane.msg"
"msg/LaneContainer.msg"
"msg/LaneFeedback.msg"
"msg/LaneOption.msg"
"msg/LanePoint.msg"
"msg/LaneContainerPoint.msg"
"msg/Lights.msg"
"msg/RCMode.msg"
"msg/Spatz/Spatz.msg"
"msg/Spatz/SystemParams.msg"
"msg/SpatzenhirnBehaviour.msg"
"msg/Trajectory.msg"
"msg/TrajectoryPlanningInput.msg"
"msg/TrajectoryPlanningSection.msg"
"msg/TrajectoryState.msg"
"msg/spatz11/BrakeLightCommand.msg"
"msg/spatz11/FourWheelDouble.msg"
"msg/spatz11/IndicatorCommand.msg"
"msg/spatz11/Spatz11SensorData.msg"
DEPENDENCIES
geometry_msgs
builtin_interfaces
std_msgs
)
ament_package()