-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
65 lines (48 loc) · 1.42 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
cmake_minimum_required(VERSION 2.8.3)
project(boost_python_catkin_example)
find_package(catkin REQUIRED)
find_package(Boost REQUIRED COMPONENTS python)
find_package(PythonLibs 2.7 REQUIRED) # sets ${PYTHON_INCLUDE_DIRS}
catkin_python_setup() # this sets up the path /devel/lib/python2.7/dist-packages/boostpy_test
catkin_package()
###########
## Build ##
###########
## Specify additional locations of header files
## Your package locations should be listed before other locations
# include_directories(include)
include_directories(
${catkin_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
${PYTHON_INCLUDE_DIRS}
)
add_library(mycpplib SHARED
src/mycpplib.cpp
)
# change output directory, so python can find the module, and set prefix to ""
# to omit the default "lib".
set_target_properties(mycpplib PROPERTIES
PREFIX ""
LIBRARY_OUTPUT_DIRECTORY ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_PYTHON_DESTINATION}
)
target_link_libraries(mycpplib
${catkin_LIBRARIES}
${Boost_LIBRARIES}
)
add_executable(use_pylib
src/use_pylib.cpp
)
target_link_libraries(use_pylib
${catkin_LIBRARIES}
${Boost_LIBRARIES}
${PYTHON_LIBRARIES}
)
#############
## Install ##
#############
install(TARGETS mycpplib
ARCHIVE DESTINATION ${CATKIN_PACKAGE_PYTHON_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_PYTHON_DESTINATION}
)
catkin_install_python(PROGRAMS scripts/use_cpplib.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})