mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
99346bb692
* Update to v1.2.2 * Fix libwebpmux Windows name breakage The pc file relies on the original output name: No 'lib' prefix for MSVC. No 'liblib' prefix for mingw. * Minor portfile updates * Don't self-depend on default features * Fix the libwebpmux feature * Fix internal tool dependencies * Drop Xrandr patch (fixed in freeglut) * Drop X11 patch (fixed in freeglut) * Cleanup CMake config patch, no extra case hacks * Adjust webp lib names in skia, qt5-imageformats * Adjust downstream WEBP cmake usage * Debug qtimageformats [skip actions] * [tiff] Drive-by fix for CMake warning * Drop non-standard debug postfix * Update indentation * Update port versions * Update versions * Revert qtimageformat debug change * Fixup qt5-imageformats change * Update versions
61 lines
2.1 KiB
CMake
61 lines
2.1 KiB
CMake
cmake_policy(PUSH)
|
|
cmake_policy(SET CMP0012 NEW)
|
|
cmake_policy(SET CMP0057 NEW)
|
|
set(z_vcpkg_tiff_find_options "")
|
|
if("REQUIRED" IN_LIST ARGS)
|
|
list(APPEND z_vcpkg_tiff_find_options "REQUIRED")
|
|
endif()
|
|
if("QUIET" IN_LIST ARGS)
|
|
list(APPEND z_vcpkg_tiff_find_options "QUIET")
|
|
endif()
|
|
|
|
_find_package(${ARGS})
|
|
|
|
if(TIFF_FOUND AND "@VCPKG_LIBRARY_LINKAGE@" STREQUAL "static")
|
|
set(z_vcpkg_tiff_link_libraries "")
|
|
set(z_vcpkg_tiff_libraries "")
|
|
if(@webp@)
|
|
find_package(WebP CONFIG ${z_vcpkg_tiff_find_options})
|
|
list(APPEND z_vcpkg_tiff_link_libraries WebP::WebP)
|
|
list(APPEND z_vcpkg_tiff_libraries ${WebP_LIBRARIES})
|
|
endif()
|
|
if(@lzma@)
|
|
find_package(LibLZMA ${z_vcpkg_tiff_find_options})
|
|
list(APPEND z_vcpkg_tiff_link_libraries LibLZMA::LibLZMA)
|
|
list(APPEND z_vcpkg_tiff_libraries ${LIBLZMA_LIBRARIES})
|
|
endif()
|
|
if(@jpeg@)
|
|
find_package(JPEG ${z_vcpkg_tiff_find_options})
|
|
list(APPEND z_vcpkg_tiff_link_libraries JPEG::JPEG)
|
|
list(APPEND z_vcpkg_tiff_libraries ${JPEG_LIBRARIES})
|
|
endif()
|
|
if(@zstd@)
|
|
find_package(ZSTD CONFIG ${z_vcpkg_tiff_find_options})
|
|
if(TARGET zstd::libzstd_shared)
|
|
set(z_vcpkg_tiff_zstd zstd::libzstd_shared)
|
|
else()
|
|
set(z_vcpkg_tiff_zstd zstd::libzstd_static)
|
|
endif()
|
|
list(APPEND z_vcpkg_tiff_link_libraries ${z_vcpkg_tiff_zstd})
|
|
list(APPEND z_vcpkg_tiff_libraries ${z_vcpkg_tiff_zstd})
|
|
endif()
|
|
if(@zlib@)
|
|
find_package(ZLIB ${z_vcpkg_tiff_find_options})
|
|
list(APPEND z_vcpkg_tiff_link_libraries ZLIB::ZLIB)
|
|
list(APPEND z_vcpkg_tiff_libraries ${ZLIB_LIBRARIES})
|
|
endif()
|
|
if(UNIX)
|
|
list(APPEND z_vcpkg_tiff_link_libraries m)
|
|
list(APPEND z_vcpkg_tiff_libraries m)
|
|
endif()
|
|
|
|
if(TARGET TIFF::TIFF)
|
|
set_property(TARGET TIFF::TIFF APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${z_vcpkg_tiff_link_libraries})
|
|
endif()
|
|
list(APPEND TIFF_LIBRARIES ${z_vcpkg_tiff_libraries})
|
|
unset(z_vcpkg_tiff_link_libraries)
|
|
unset(z_vcpkg_tiff_libraries)
|
|
endif()
|
|
unset(z_vcpkg_tiff_find_options)
|
|
cmake_policy(POP)
|