-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
51 lines (40 loc) · 740 Bytes
/
CMakeLists.txt
File metadata and controls
51 lines (40 loc) · 740 Bytes
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
cmake_minimum_required(VERSION 3.0.2)
project(smart_python_ros_node)
find_package(catkin REQUIRED COMPONENTS
dynamic_reconfigure
message_generation
rospy
std_msgs
)
catkin_python_setup()
add_message_files(
FILES
smartCommonData.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
generate_dynamic_reconfigure_options(
cfg/smartCommon.cfg
)
catkin_package(
INCLUDE_DIRS
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS rospy std_msgs dynamic_reconfigure message_runtime
DEPENDS
)
###########
## Build ##
###########
include_directories(
${catkin_INCLUDE_DIRS}
)
#############
## Install ##
#############
# Install launch files
install(
DIRECTORY launch cfg
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)