From 6320df9d4741760da93c57e0be6713d03faa97a1 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 1 May 2024 18:16:08 +0200 Subject: [PATCH] Write rpaths when installing --- cmakemodules/ilcsoft_default_rpath_settings.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmakemodules/ilcsoft_default_rpath_settings.cmake b/cmakemodules/ilcsoft_default_rpath_settings.cmake index 171880d..3a6663e 100644 --- a/cmakemodules/ilcsoft_default_rpath_settings.cmake +++ b/cmakemodules/ilcsoft_default_rpath_settings.cmake @@ -15,6 +15,6 @@ if(APPLE) set(CMAKE_INSTALL_RPATH "@loader_path/../${CMAKE_INSTALL_LIBDIR}") endif("${isSystemDir}" STREQUAL "-1") else() - set(CMAKE_SKIP_INSTALL_RPATH TRUE) # skip the full RPATH for the install tree + set(CMAKE_SKIP_INSTALL_RPATH FALSE) # skip the full RPATH for the install tree endif()