From: Lasse Collin Date: Sat, 13 Feb 2021 21:31:27 +0000 (+0200) Subject: CMake: Use interface library for better FindLibLZMA compatibility. X-Git-Tag: v5.3.2alpha~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7da44d5151e21f153925781ad29334ae0786101;p=thirdparty%2Fxz.git CMake: Use interface library for better FindLibLZMA compatibility. https://www.mail-archive.com/xz-devel@tukaani.org/msg00446.html Thanks to Markus Rickert. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 47ce5f56..88bec28e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -454,9 +454,16 @@ file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/liblzma-config.cmake" "include(CMakeFindDependencyMacro) set(THREADS_PREFER_PTHREAD_FLAG TRUE) find_dependency(Threads) + include(\"\${CMAKE_CURRENT_LIST_DIR}/liblzma-targets.cmake\") -# Be compatible with the spelling used by the FindLibLZMA module: -add_library(LibLZMA::LibLZMA ALIAS liblzma::liblzma) + +# Be compatible with the spelling used by the FindLibLZMA module. This +# doesn't use ALIAS because it would make CMake resolve LibLZMA::LibLZMA +# to liblzma::liblzma instead of keeping the original spelling. Keeping +# the original spelling is important for good FindLibLZMA compatibility. +add_library(LibLZMA::LibLZMA INTERFACE IMPORTED) +set_target_properties(LibLZMA::LibLZMA PROPERTIES + INTERFACE_LINK_LIBRARIES liblzma::liblzma) ") # Set CMAKE_INSTALL_LIBDIR and friends.