Skip to content
Snippets Groups Projects
Commit 22a14c15 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

cmake: add PUBLIC links for python module

parent 3960086a
No related branches found
No related tags found
No related merge requests found
Pipeline #20430 passed
......@@ -16,9 +16,9 @@ SET_TARGET_PROPERTIES(${wrap} PROPERTIES
INSTALL_RPATH "\$ORIGIN/../../.."
)
TARGET_COMPILE_OPTIONS(${wrap} PRIVATE "-Wno-conversion")
TARGET_LINK_LIBRARIES(${wrap} ${PROJECT_NAME})
TARGET_LINK_LIBRARIES(${wrap} eigenpy::eigenpy)
TARGET_LINK_BOOST_PYTHON(${wrap})
TARGET_LINK_LIBRARIES(${wrap} PUBLIC ${PROJECT_NAME})
TARGET_LINK_LIBRARIES(${wrap} PUBLIC eigenpy::eigenpy)
TARGET_LINK_BOOST_PYTHON(${wrap} PUBLIC)
IF(APPLE)
# We need to change the extension for python bindings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment