-
Notifications
You must be signed in to change notification settings - Fork 10
/
CMakeLists.txt
87 lines (70 loc) · 2.09 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
cmake_minimum_required(VERSION 3.1)
project(quanergy_client_ros)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
## Find catkin macros and libraries
find_package(catkin REQUIRED COMPONENTS
roscpp
sensor_msgs
pcl_ros
)
## System dependencies are found with CMake's conventions
find_package(QuanergyClient REQUIRED)
find_package(PCL REQUIRED COMPONENTS common io)
# finding FLANN doesn't work on 18.04 but is required on 20.04
# we do the find but without required
find_package(FLANN QUIET)
# Workaround required due to a bug in VTK6 for Ubuntu 16.04
# See https://bugs.launchpad.net/ubuntu/+source/vtk6/+bug/1573234
if (NOT "${PCL_LIBRARIES}" STREQUAL "")
list(REMOVE_ITEM PCL_LIBRARIES "vtkproj4")
endif()
###################################
## catkin specific configuration ##
###################################
## The catkin_package macro generates cmake config files for your package
catkin_package(
CATKIN_DEPENDS roscpp sensor_msgs pcl_ros
)
###########
## Build ##
###########
## Specify additional locations of header files
include_directories(include)
include_directories(
${catkin_INCLUDE_DIRS}
${PCL_INCLUDE_DIRS}
)
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
file(GLOB_RECURSE project_HEADERS
"*.h"
"*.hpp"
)
## Declare a cpp executable
add_executable(client_node
src/client_node.cpp
${project_HEADERS})
## Specify libraries to link a library or executable target against
target_link_libraries(client_node
${catkin_LIBRARIES}
${PCL_LIBRARIES}
quanergy_client
)
#############
## Install ##
#############
## Mark executables and/or libraries for installation
install(TARGETS client_node
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
# Mark other files for installation (e.g. launch and bag files, etc.)
install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
)
install(DIRECTORY settings/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/settings
)