[1f058f]: / CMakeLists.txt

Download this file

34 lines (26 with data), 553 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
cmake_minimum_required(VERSION 2.8.3)
project(tfpose_ros)
## Add support for C++11, supported in ROS Kinetic and newer
add_definitions(-std=c++11)
find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
std_msgs
message_generation
)
# setup.py is called during catkin build
catkin_python_setup()
# Generate messages in the 'msg' folder
add_message_files(
FILES
BodyPartElm.msg
Person.msg
Persons.msg
)
generate_messages(
DEPENDENCIES std_msgs
)
catkin_package(
CATKIN_DEPENDS rospy message_generation message_runtime
)
install()