1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: honouring the RPATH which is set in debian/rules
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2024-08-25
--- a/Examples/CMakeLists.txt
+++ b/Examples/CMakeLists.txt
@@ -1,4 +1,6 @@
-SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+# RPATH is set in debian/rules
+#SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
+
## Note that the antsUtilities can always be built static. It will then be linked
## Directly into the other libraries.
add_library(antsUtilities antsUtilities.cxx
|