mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:39:07 +08:00
5b744ed753
* [gettext] Preset more MSVC checks * Modify configure to speed up windows builds * Support checked-in config cache * Collect config [skip actions] * Add x64 config * Collect config [skip actions] * Re-use most of windows config.cache [skip actions] * WIP [skip actions] * WIP [skip actions] * WIP [skip actions] * WIP * [mchehab-zbar] Update gettext dependencies * Add missing patch * Don't test find_package(Gettext) * [vcpkg-autotools-cache] Script port for config caching * Add missing file * Remove vcpkg-autoconf-cache --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
15 lines
703 B
CMake
15 lines
703 B
CMake
_find_package(${ARGS})
|
|
|
|
if(Intl_FOUND AND Intl_LIBRARIES)
|
|
include(SelectLibraryConfigurations)
|
|
find_library(Intl_LIBRARY_DEBUG NAMES intl libintl intl-8 NAMES_PER_DIR PATH_SUFFIXES lib PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug" NO_DEFAULT_PATH)
|
|
find_library(Intl_LIBRARY_RELEASE NAMES intl libintl intl-8 NAMES_PER_DIR PATH_SUFFIXES lib PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}" NO_DEFAULT_PATH)
|
|
unset(Intl_LIBRARIES)
|
|
unset(Intl_LIBRARIES CACHE)
|
|
select_library_configurations(Intl)
|
|
find_package(Iconv) # Since CMake 3.11
|
|
if(Iconv_FOUND AND NOT Iconv_IS_BUILT_IN)
|
|
list(APPEND Intl_LIBRARIES ${Iconv_LIBRARIES})
|
|
endif()
|
|
endif()
|