-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
41 lines (35 loc) · 917 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
cmake_minimum_required(VERSION 2.8.3)
project(robot_process)
add_definitions(-std=c++11)
## Find catkin macros and libraries
find_package(catkin REQUIRED COMPONENTS
roscpp
std_msgs
aerostack_msgs
std_srvs
)
###################################
## catkin specific configuration ##
###################################
catkin_package(
INCLUDE_DIRS include
LIBRARIES robot_process
CATKIN_DEPENDS roscpp std_msgs std_srvs aerostack_msgs
)
###########
## Build ##
###########
## Specify additional locations of header files
## Your package locations should be listed before other locations
include_directories(
${catkin_INCLUDE_DIRS}
)
include_directories(
include
source
test
)
## Declare a cpp library
add_library(robot_process source/robot_process.cpp include/robot_process.h)
add_dependencies(robot_process ${catkin_EXPORTED_TARGETS})
target_link_libraries(robot_process ${catkin_LIBRARIES})