forked from humanoid-path-planner/hpp_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
33 lines (28 loc) · 1.07 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
# Copyright (c) 2013 CNRS
# Author: Florent Lamiraux
#
# This file is part of hpp_ros.
# hpp_ros is free software: you can redistribute it
# and/or modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, either version
# 3 of the License, or (at your option) any later version.
#
# hpp_ros is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# hpp_ros. If not, see
# <http://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 2.8.3)
project(hpp_ros)
include(cmake/python.cmake)
findpython()
find_package(catkin REQUIRED COMPONENTS
geometry_msgs rostime sensor_msgs tf)
catkin_package()
catkin_python_setup()
install(DIRECTORY launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(FILES src/hpp/tools.py DESTINATION ${PYTHON_SITELIB}/hpp)