forked from nasa/astrobee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
105 lines (90 loc) · 2.51 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
95
96
97
98
99
100
101
102
103
104
# Copyright (c) 2017, United States Government, as represented by the
# Administrator of the National Aeronautics and Space Administration.
#
# All rights reserved.
#
# The Astrobee platform is licensed under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
cmake_minimum_required(VERSION 3.0)
project(ctl)
## Compile as C++14, supported in ROS Kinetic and newer
add_compile_options(-std=c++14)
## Find catkin macros and libraries
find_package(catkin2 REQUIRED COMPONENTS
roscpp
nodelet
ff_msgs
ff_util
config_reader
gnc_autocode
)
# System dependencies are found with CMake's conventions
find_package(Eigen3 REQUIRED)
catkin_package(
LIBRARIES
ctl
CATKIN_DEPENDS
roscpp
nodelet
ff_msgs
ff_util
config_reader
gnc_autocode
)
###########
## Build ##
###########
# Specify additional locations of header files
include_directories(
include
${catkin_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIR}
)
# Declare C++ libraries
add_library(ctl
src/ctl.cc
src/ctl_nodelet.cc
)
add_dependencies(ctl ${catkin_EXPORTED_TARGETS})
target_link_libraries(ctl ${catkin_LIBRARIES})
if(CATKIN_ENABLE_TESTING AND ENABLE_INTEGRATION_TESTING)
find_package(rostest REQUIRED)
add_rostest_gtest(test_ctl test/test_ctl.test
test/test_ctl_nominal.cc
)
target_link_libraries(test_ctl
ctl
)
endif()
#############
## Install ##
#############
# Mark libraries for installation
install(TARGETS ${PROJECT_NAME}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}
)
# Mark nodelet_plugin for installation
install(FILES nodelet_plugins.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
# Mark cpp header files for installation
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
FILES_MATCHING PATTERN "*.h"
PATTERN ".svn" EXCLUDE
)
# Mark launch files for installation
install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
PATTERN ".svn" EXCLUDE)