-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakeLists.txt
74 lines (61 loc) · 1.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
cmake_minimum_required(VERSION 2.4.6)
project(ur5controller)
include(CheckCXXSourceCompiles)
find_package(catkin REQUIRED COMPONENTS
geometry_msgs
openrave_catkin
std_msgs
robotiq_c_model_control
trajectory_msgs
actionlib
actionlib_msgs
control_msgs
)
set(CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
include_directories(SYSTEM
${catkin_INCLUDE_DIRS}
${OpenRAVE_INCLUDE_DIRS}
${PROJECT_NAME}/include
)
link_directories(
${catkin_LIBRARY_DIRS}
${OpenRAVE_LIBRARY_DIRS}
)
find_package(Boost REQUIRED COMPONENTS thread)
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
catkin_package(
INCLUDE_DIRS include
LIBRARIES
${PROJECT_NAME}
CATKIN_DEPENDS
geometry_msgs
robotiq_c_model_control
std_msgs
trajectory_msgs
actionlib
actionlib_msgs
control_msgs
DEPENDS
boost
openrave
)
include_directories(include/${PROJECT_NAME})
# Helper library that implements core functionality.
add_library(${PROJECT_NAME} SHARED
src/robotiqcontroller.cpp
src/ur5controller.cpp
)
# Stub library that registers the plugins with OpenRAVE.
openrave_plugin(${PROJECT_NAME}_plugin
src/ur5controller_interface.cpp
)
target_link_libraries(${PROJECT_NAME}_plugin
${PROJECT_NAME}
${catkin_LIBRARIES}
)
install(TARGETS ${PROJECT_NAME}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)