We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2b9f5e commit 29646b6Copy full SHA for 29646b6
CMakeLists.txt
@@ -32,9 +32,6 @@ catkin_package(
32
# DEPENDS system_lib
33
)
34
35
-catkin_install_python(PROGRAMS scripts/use_cpplib.py
36
- DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
37
-
38
###########
39
## Build ##
40
@@ -61,11 +58,18 @@ set_target_properties(mycpplib PROPERTIES
61
58
target_link_libraries(mycpplib
62
59
${catkin_LIBRARIES}
63
60
${Boost_LIBRARIES}
64
65
66
+
+#############
+## Install ##
67
68
install(TARGETS mycpplib
69
ARCHIVE DESTINATION ${CATKIN_PACKAGE_PYTHON_DESTINATION}
70
LIBRARY DESTINATION ${CATKIN_PACKAGE_PYTHON_DESTINATION}
71
72
73
+catkin_install_python(PROGRAMS scripts/use_cpplib.py
74
+ DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
75
0 commit comments