-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCMakeLists.txt
44 lines (36 loc) · 1.04 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
cmake_minimum_required(VERSION 3.0.2)
project(voronoi_layer)
## Compile as C++11, supported in ROS Kinetic and newer
add_compile_options(-std=c++14)
set(CMAKE_BUILD_TYPE Release)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror")
# set(CMAKE_CXX_CLANG_TIDY
# clang-tidy;
# -header-filter=${PROJECT_SOURCE_DIR}/voronoi_layer;
# -warnings-as-errors=*;
# )
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
costmap_2d
dynamic_reconfigure
nav_msgs
)
# Glog
find_package(glog REQUIRED)
catkin_package(
INCLUDE_DIRS ${PROJECT_SOURCE_DIR} third_party
LIBRARIES voronoi_layer
CATKIN_DEPENDS
costmap_2d
dynamic_reconfigure
nav_msgs
)
include_directories(
${PROJECT_SOURCE_DIR}
${catkin_INCLUDE_DIRS}
third_party
)
add_library(voronoi_layer voronoi_layer/voronoi_layer.cc third_party/dynamicvoronoi/dynamicvoronoi.cpp)
target_link_libraries(voronoi_layer ${catkin_LIBRARIES} glog::glog)