Skip to content
Snippets Groups Projects
Commit cbcd7c2c authored by Olivier Stasse's avatar Olivier Stasse Committed by Guilhem Saurel
Browse files

[CMake] Add Boost_PYTHON_LIBRARIES in cmake.

parent 2345ddc1
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,9 @@ TARGET_INCLUDE_DIRECTORIES(${LIBRARY_NAME}
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${PYTHON_LIBRARY})
IF(UNIX)
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${CMAKE_DL_LIBS})
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${Boost_LIBRARIES})
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${Boost_PYTHON_LIBRARIES})
TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${CMAKE_DL_LIBS})
ENDIF(UNIX)
SET_TARGET_PROPERTIES(${LIBRARY_NAME} PROPERTIES SOVERSION ${PROJECT_VERSION})
......
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