This repository has been archived by the owner on Sep 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
58 lines (46 loc) · 1.54 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
# 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/base.cmake)
include(cmake/python.cmake)
set(PROJECT_DESCRIPTION
"Bridge between hpp and ros."
)
set(PROJECT_URL "")
set(${PROJECT_NAME}_HEADERS
include/hpp/ros/joint-state.hh
include/hpp/ros/joint-trajectory.hh
)
findpython()
setup_project()
find_package(catkin REQUIRED COMPONENTS
geometry_msgs rostime sensor_msgs tf)
catkin_package()
catkin_python_setup()
INSTALL (FILES
src/hpp_ros/manipulation/__init__.py
src/hpp_ros/manipulation/scene_publisher.py
DESTINATION ${CATKIN_PACKAGE_PYTHON_DESTINATION}/manipulation
)
install(FILES launch/hpp_ros.launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
)
install(FILES rviz_configs/hpp_ros.rviz
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rviz_configs
)
setup_project_finalize()