Don't hardcode the library directory name

INSTALL_LIBDIR may point to a different directory than "lib".

Contributes to QTBUG-81289

Change-Id: Ia8220515e3ee3703539aa28655e6c806736615ec
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Christophe Giboudeaux 2020-01-21 15:38:27 +01:00 committed by Alexandru Croitor
parent 7f6eb6ead6
commit 3f386095ad

View File

@ -63,9 +63,9 @@ if(NOT QT_MKSPECS_DIR)
endif() endif()
# the default RPATH to be used when installing, but only if it's not a system directory # the default 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) LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBDIR}" isSystemDir)
IF("${isSystemDir}" STREQUAL "-1") IF("${isSystemDir}" STREQUAL "-1")
SET(_default_install_rpath "${CMAKE_INSTALL_PREFIX}/lib") SET(_default_install_rpath "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBDIR}")
ENDIF("${isSystemDir}" STREQUAL "-1") ENDIF("${isSystemDir}" STREQUAL "-1")
# Default rpath settings: Use rpath for build tree as well as a full path for the installed binaries. # Default rpath settings: Use rpath for build tree as well as a full path for the installed binaries.
@ -3950,7 +3950,7 @@ function(qt_generate_qconfig_cpp)
if(WIN32) if(WIN32)
set(lib_location_absolute_path "${CMAKE_INSTALL_PREFIX}/${INSTALL_BINDIR}") set(lib_location_absolute_path "${CMAKE_INSTALL_PREFIX}/${INSTALL_BINDIR}")
else() else()
set(lib_location_absolute_path "${CMAKE_INSTALL_PREFIX}/lib") set(lib_location_absolute_path "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBDIR}")
endif() endif()
file(RELATIVE_PATH from_lib_location_to_prefix file(RELATIVE_PATH from_lib_location_to_prefix
"${lib_location_absolute_path}" "${CMAKE_INSTALL_PREFIX}") "${lib_location_absolute_path}" "${CMAKE_INSTALL_PREFIX}")