forked from tier4/tier4_autoware_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
46 lines (40 loc) · 1.33 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
cmake_minimum_required(VERSION 3.5)
project(tier4_perception_msgs)
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()
rosidl_generate_interfaces(${PROJECT_NAME}
"msg/object_recognition/DetectedObjectWithFeature.msg"
"msg/object_recognition/DetectedObjectsWithFeature.msg"
"msg/object_recognition/DynamicObject.msg"
"msg/object_recognition/DynamicObjectArray.msg"
"msg/object_recognition/Feature.msg"
"msg/object_recognition/PredictedPath.msg"
"msg/object_recognition/Semantic.msg"
"msg/object_recognition/Shape.msg"
"msg/object_recognition/State.msg"
"msg/traffic_light/TrafficLightElement.msg"
"msg/traffic_light/TrafficLightRoi.msg"
"msg/traffic_light/TrafficLightRoiArray.msg"
"msg/traffic_light/TrafficLight.msg"
"msg/traffic_light/TrafficLightArray.msg"
DEPENDENCIES
autoware_auto_perception_msgs
builtin_interfaces
geometry_msgs
sensor_msgs
std_msgs
unique_identifier_msgs
)
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()
ament_auto_package()