-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
38 lines (33 loc) · 797 Bytes
/
CMakeLists.txt
File metadata and controls
38 lines (33 loc) · 797 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
cmake_minimum_required(VERSION 3.0.2)
project(ros_internet_speed)
find_package(catkin REQUIRED COMPONENTS
message_generation
rospy
std_srvs
std_msgs
)
################################################
## Declare ROS messages, services and actions ##
################################################
add_message_files(
FILES
InternetSpeedReport.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
###################################
## catkin specific configuration ##
###################################
catkin_package(
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS rospy std_srvs std_msgs message_generation message_runtime
)
#############
## Install ##
#############
catkin_install_python(
PROGRAMS node/internet_speed_node
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)