-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
executable file
·95 lines (77 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
cmake_minimum_required(VERSION 3.0.2)
project(visual_occupancy_map)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
add_definitions(-DCOMPILEDWITHC11)
message(STATUS "Using flag -std=c++11.")
elseif(COMPILER_SUPPORTS_CXX0X)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
add_definitions(-DCOMPILEDWITHC0X)
message(STATUS "Using flag -std=c++0x.")
else()
message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
## 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
cv_bridge
geometry_msgs
nav_msgs
roscpp
sensor_msgs
message_filters
)
## System dependencies are found with CMake's conventions
find_package(OpenCV 3.0 QUIET)
if(NOT OpenCV_FOUND)
find_package(OpenCV 2.4.3 QUIET)
if(NOT OpenCV_FOUND)
message(FATAL_ERROR "OpenCV > 2.4.3 not found.")
endif()
endif()
find_package(Eigen3 3.1.0 REQUIRED)
find_package(PCL REQUIRED)
find_package(Boost COMPONENTS system)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
set(LIBS
${OpenCV_LIBS}
${EIGEN3_LIBS}
${Boost_LIBRARIES}
)
catkin_package(
CATKIN_DEPENDS cv_bridge geometry_msgs nav_msgs roscpp sensor_msgs message_filters
)
###########
## Build ##
###########
## Specify additional locations of header files
## Your package locations should be listed before other locations
include_directories(
${catkin_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
)
## Declare a C++ executable
## With catkin_make all packages are built within a single CMake context
## The recommended prefix ensures that target names across packages don't collide
add_executable(occupancy_map_node src/occupancy_grid_map.cpp)
add_executable(semantic_occupancy_map_node src/semantic_occupancy_grid_map.cpp)
##add_executable(dense_occupancy_map_node src/dense_occupancy_grid_map.cpp)
## Specify libraries to link a library or executable target against
target_link_libraries(occupancy_map_node
${catkin_LIBRARIES}
${LIBS}
)
target_link_libraries(semantic_occupancy_map_node
${catkin_LIBRARIES}
${LIBS}
)
## target_link_libraries(dense_occupancy_map_node
## ${catkin_LIBRARIES}
## ${LIBS}
## )