-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCMakeLists.txt
56 lines (47 loc) · 1.02 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
cmake_minimum_required(VERSION 2.8.3)
project(moveit_whole_body_ik)
add_compile_options(-std=c++11)
find_package(Boost REQUIRED system thread)
find_package(catkin REQUIRED COMPONENTS
moveit_ros_robot_interaction
moveit_visual_tools
moveit_core
moveit_ros_planning
pluginlib
roscpp
srdfdom
urdf
)
find_package(Eigen3 REQUIRED)
find_package(LAPACK REQUIRED)
catkin_package(
LIBRARIES
INCLUDE_DIRS
whole_body_kinematics_plugin/include
CATKIN_DEPENDS
moveit_ros_robot_interaction
moveit_visual_tools
pluginlib
moveit_core
moveit_ros_planning
DEPENDS
Boost
EIGEN3
)
include_directories(
whole_body_kinematics_plugin/include
${catkin_INCLUDE_DIRS}
)
include_directories(SYSTEM
${EIGEN3_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
)
link_directories(${Boost_LIBRARY_DIRS})
link_directories(${catkin_LIBRARY_DIRS})
add_subdirectory(whole_body_kinematics_plugin)
install(
FILES
whole_body_kinematics_plugin_description.xml
DESTINATION
${CATKIN_PACKAGE_SHARE_DESTINATION}
)