-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
66 lines (54 loc) · 1.46 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
cmake_minimum_required(VERSION 3.0.2)
project(create_navigation)
add_compile_options(-std=c++11 -Wall -Werror)
find_package(catkin REQUIRED COMPONENTS
roscpp
create_msgs
geometry_msgs
pcl_ros
tf
)
catkin_package(
CATKIN_DEPENDS
roscpp
create_msgs
geometry_msgs
pcl_ros
tf
)
include_directories(
include/
${catkin_INCLUDE_DIRS}
)
add_executable(create_pointcloud_node
src/create_pointcloud_node.cpp
)
target_link_libraries(create_pointcloud_node
${catkin_LIBRARIES}
)
#-----------------------------------------------------------------------------------------------------------------------
# Install
#-----------------------------------------------------------------------------------------------------------------------
install(
DIRECTORY
launch
config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(
TARGETS
create_pointcloud_node
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
#############
## Testing ##
#############
## Add gtest based cpp test target and link libraries
# catkin_add_gtest(${PROJECT_NAME}-test test/test_create_navigation.cpp)
# if(TARGET ${PROJECT_NAME}-test)
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
# endif()
## Add folders to be run by python nosetests
# catkin_add_nosetests(test)