mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 13:10:17 +08:00
bdb2ab9ea6
* [exiv2] Adding platform restrictions to Dependencies libiconv * Add license
21 lines
635 B
CMake
21 lines
635 B
CMake
_find_package(${ARGS})
|
|
|
|
if("@VCPKG_LIBRARY_LINKAGE@" STREQUAL "static")
|
|
if(NOT @VCPKG_TARGET_IS_WINDOWS@)
|
|
find_package(Iconv REQUIRED)
|
|
endif()
|
|
if(@EXIV2_ENABLE_NLS@)
|
|
find_package(Intl REQUIRED)
|
|
endif()
|
|
if(TARGET exiv2lib)
|
|
if(NOT @VCPKG_TARGET_IS_WINDOWS@)
|
|
set_property(TARGET exiv2lib APPEND PROPERTY INTERFACE_LINK_LIBRARIES
|
|
Iconv::Iconv
|
|
)
|
|
endif()
|
|
if(@EXIV2_ENABLE_NLS@)
|
|
set_property(TARGET exiv2lib APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${Intl_LIBRARIES})
|
|
endif()
|
|
endif()
|
|
endif()
|