-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCMakeLists.txt
50 lines (40 loc) · 1020 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
50
cmake_minimum_required(VERSION 2.8.3)
project(vfh_rover)
## Compile as C++11, supported in ROS Kinetic and newer
add_compile_options(-std=c++11 -O3)
find_package(catkin REQUIRED COMPONENTS
roscpp
octomap_ros
octomap_msgs
PCL
pcl_conversions
)
find_package(octomap REQUIRED)
add_definitions(-DOCTOMAP_NODEBUGOUT)
## Uncomment this if the package has a setup.py
# catkin_python_setup()
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES vfh_rover
# CATKIN_DEPENDS roscpp
# DEPENDS system_lib
)
include_directories(
include
${catkin_INCLUDE_DIRS}
${OCTOMAP_INCLUDE_DIRS}
)
set(LINK_LIBS
${OCTOMAP_LIBRARIES}
${catkin_LIBRARIES}
)
set(SRC
"src/PolarHistogram.cpp"
"src/VFHistogram.cpp"
"src/OctomapProcessing.cpp"
"src/util.cpp"
)
add_executable(${PROJECT_NAME}_node src/vfh_rover_node.cpp ${SRC})
target_link_libraries(${PROJECT_NAME}_node ${LINK_LIBS})
add_executable(${PROJECT_NAME}_testPC src/SingleVoxTest.cpp ${SRC})
target_link_libraries(${PROJECT_NAME}_testPC ${LINK_LIBS})