-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
59 lines (45 loc) · 1.38 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
cmake_minimum_required(VERSION 3.5)
project(restricted_costmap_plugin)
set(lib_name ${PROJECT_NAME}_core)
# === Environment ===
# 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()
# === Dependencies ===
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(nav2_costmap_2d REQUIRED)
find_package(pluginlib REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(stihl_nav_msgs REQUIRED)
find_package(std_msgs REQUIRED)
set(dep_pkgs
rclcpp
nav2_costmap_2d
pluginlib
geometry_msgs
stihl_nav_msgs
std_msgs)
# === Build ===
add_library(${lib_name} SHARED
src/restricted_area_layer.cpp
src/MapService.cpp)
include_directories(include)
# === Installation ===
install(TARGETS ${lib_name}
DESTINATION lib)
# === Ament work ===
# pluginlib_export_plugin_description_file() installs gradient_layer.xml
# file into "share" directory and sets ament indexes for it.
# This allows the plugin to be discovered as a plugin of required type.
pluginlib_export_plugin_description_file(nav2_costmap_2d restricted_area_layer.xml)
ament_target_dependencies(${lib_name} ${dep_pkgs})
ament_package()