summaryrefslogtreecommitdiffstats
path: root/cmake/QtBuild.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/QtBuild.cmake')
-rw-r--r--cmake/QtBuild.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmake/QtBuild.cmake b/cmake/QtBuild.cmake
index 27fe8d4226..92b4e7e400 100644
--- a/cmake/QtBuild.cmake
+++ b/cmake/QtBuild.cmake
@@ -247,6 +247,15 @@ set(CMAKE_INSTALL_RPATH "" CACHE STRING "RPATH for installed binaries")
# add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
+#
+# TODO: Do we really want to use this option for official packages? Perhaps make it configurable
+# or remove it? This causes final installed binaries to contain an absolute path RPATH pointing
+# to ${CMAKE_INSTALL_PREFIX}/lib, which on the CI would be something like
+# /Users/qt/work/install/lib.
+# It doesn't seem necessary to me, given that qt_apply_rpaths already applies $ORIGIN-style
+# relocatable paths, but maybe i'm missing something, because the original commit that added the
+# option mentions it's needed in some cross-compilation scenario for program binaries that
+# link against QtCore.
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
function(qt_setup_tool_path_command)