-
Notifications
You must be signed in to change notification settings - Fork 267
/
CMakeLists.txt
49 lines (40 loc) · 976 Bytes
/
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
cmake_minimum_required(VERSION 2.8.3)
project(lidar_align)
add_definitions(-std=c++11 -ofast)
find_package(catkin REQUIRED COMPONENTS
roscpp
image_transport
cv_bridge
pcl_ros
rosbag
sensor_msgs
geometry_msgs
)
# NLOPT is frustratingly inconsistent in the name of its cmake file so we use our own
list(APPEND CMAKE_FIND_ROOT_PATH ${CMAKE_SOURCE_DIR})
find_package(NLOPT REQUIRED)
include_directories(
include
${NLOPT_INCLUDE_DIRS}
${catkin_INCLUDE_DIRS}
)
add_library(${PROJECT_NAME}
src/sensors.cpp
src/aligner.cpp
src/loader.cpp
)
target_link_libraries(${PROJECT_NAME} ${catkin_LIBRARIES} ${NLOPT_LIBRARIES})
catkin_package(
INCLUDE_DIRS include/
LIBRARIES ${PROJECT_NAME}
)
add_executable(lidar_align_node
src/lidar_align_node.cpp
)
target_link_libraries(lidar_align_node ${PROJECT_NAME} ${catkin_LIBRARIES})
install(DIRECTORY include/lidar_align
DESTINATION include
FILES_MATCHING
PATTERN "*.h"
PATTERN "*.hpp"
)