]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Reference Point gdd/31191_kernel_pip_install
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 8 Nov 2024 14:01:39 +0000 (15:01 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 8 Nov 2024 14:01:39 +0000 (15:01 +0100)
CMakeLists.txt

index 4db4ff76119a8721bd9c2e71814b09ebcd22d3f6..1d80facbba1fd3dcd48252e7e422eeeffee0f542 100755 (executable)
@@ -190,6 +190,22 @@ CONFIGURE_FILE(CTestTestfileInstall.cmake.in CTestTestfileInstall.cmake @ONLY)
 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/CTestTestfileInstall.cmake
         DESTINATION ${KERNEL_TEST_DIR}
         RENAME CTestTestfile.cmake)
+        
+# RPATH settings:
+# use, i.e. don't skip the full RPATH for the build tree
+set ( CMAKE_SKIP_BUILD_RPATH  FALSE )
+# when building, don't use the install RPATH already
+# (but later on when installing)
+set ( CMAKE_BUILD_WITH_INSTALL_RPATH FALSE )
+# add the automatically determined parts of the RPATH
+# which point to directories outside the build tree to the install RPATH
+set ( CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE )
+# the RPATH to be used when installing, but only if it's not a system directory
+list ( FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir )
+if ( "${isSystemDir}" STREQUAL "-1" )
+  # $ORIGIN/../../../../../lib/salome
+  set ( CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib/salome" )
+endif()
 
 
 IF(SALOME_LIGHT_ONLY)