Skip to content
Snippets Groups Projects
Verified Commit 177316dd authored by Lars Bilke's avatar Lars Bilke
Browse files

[cmake] Fix RPATH for external dependencies.

parent 23c2c1f9
No related branches found
No related tags found
No related merge requests found
......@@ -325,5 +325,8 @@ endif()
# append RPATHs
foreach(lib ${_EXT_LIBS})
list(APPEND CMAKE_BUILD_RPATH ${PROJECT_BINARY_DIR}/_ext/${lib}/lib)
set(CMAKE_BUILD_RPATH
${CMAKE_BUILD_RPATH} ${PROJECT_BINARY_DIR}/_ext/${lib}/lib
${PROJECT_BINARY_DIR}/_ext/${lib}/lib64
)
endforeach()
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