forked from moveit/moveit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
62 lines (54 loc) · 1.41 KB
/
CMakeLists.txt
File metadata and controls
62 lines (54 loc) · 1.41 KB
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
59
60
61
62
cmake_minimum_required(VERSION 3.1.3)
project(moveit_kinematics)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
find_package(Boost REQUIRED)
find_package(Eigen3 REQUIRED)
find_package(orocos_kdl REQUIRED)
find_package(catkin REQUIRED COMPONENTS
moveit_core
pluginlib
roscpp
tf2
tf2_kdl
)
set(THIS_PACKAGE_INCLUDE_DIRS
kdl_kinematics_plugin/include
lma_kinematics_plugin/include
srv_kinematics_plugin/include
cached_ik_kinematics_plugin/include
)
catkin_package(
LIBRARIES
INCLUDE_DIRS
${THIS_PACKAGE_INCLUDE_DIRS}
CATKIN_DEPENDS
moveit_core
pluginlib
roscpp
DEPENDS
EIGEN3
)
include_directories(${THIS_PACKAGE_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIRS}
${catkin_INCLUDE_DIRS}
)
add_subdirectory(kdl_kinematics_plugin)
add_subdirectory(lma_kinematics_plugin)
add_subdirectory(srv_kinematics_plugin)
add_subdirectory(ikfast_kinematics_plugin)
add_subdirectory(cached_ik_kinematics_plugin)
add_subdirectory(test)
install(
FILES
kdl_kinematics_plugin_description.xml
lma_kinematics_plugin_description.xml
srv_kinematics_plugin_description.xml
cached_ik_kinematics_plugin_description.xml
DESTINATION
${CATKIN_PACKAGE_SHARE_DESTINATION})