-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCMakeLists.txt
executable file
·105 lines (85 loc) · 2.58 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
105
cmake_minimum_required(VERSION 2.8.3)
project(quad_controller_rl)
###########################
## General configuration ##
###########################
## Add support for C++11, supported in ROS Kinetic and newer
# add_definitions(-std=c++11)
##################
## Catkin Tools ##
##################
## Find catkin macros and libraries
find_package(catkin REQUIRED
message_generation
std_msgs
geometry_msgs
std_srvs
)
##################
## Python setup ##
##################
## Uncomment this if the package has a setup.py. This macro ensures
## modules and global scripts declared therein get installed
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
catkin_python_setup()
################################################
## Declare ROS messages, services and actions ##
################################################
## Add messages to generate, defined in the 'msg' folder
# add_message_files(
# FILES
# EulerAngles.msg
# )
## Add services to generate, defined in the 'srv' folder
add_service_files(
FILES
SetPose.srv
)
## Add actions to generate, defined in the 'action' folder
# add_action_files(
# FILES
# Action1.action
# )
## Generate added messages and services, with any dependencies listed here
generate_messages(
DEPENDENCIES
geometry_msgs
std_srvs
)
################################################
## Declare ROS dynamic reconfigure parameters ##
################################################
## Generate dynamic reconfigure parameters in the 'cfg' folder
# generate_dynamic_reconfigure_options(
# cfg/params.cfg
# )
#################################
## Generate CMake config files ##
#################################
## Declare things to be passed to dependent projects
## INCLUDE_DIRS: uncomment this if your package contains header files
## LIBRARIES: libraries you create in this project that dependent projects also need
## CATKIN_DEPENDS: catkin_packages dependent projects also need
## DEPENDS: system dependencies of this project that dependent projects also need
catkin_package(
DEPENDS message_runtime
DEPENDS std_msgs
DEPENDS geometry_msgs
DEPENDS std_srvs
)
###########
## Build ##
###########
## Specify additional header file locations
## Declare C++ libraries/executables
## Add dependencies/links for above libraries/executables
#############
## Install ##
#############
## Note: All install targets should use catkin DESTINATION variables
## See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
#############
## Testing ##
#############
## Add folders to be run by python nosetests
# catkin_add_nosetests(tests)