2020-06-24 04:37:41 +08:00
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
2018-04-10 20:46:46 +08:00
|
|
|
message(WARNING
|
2019-05-18 02:13:22 +08:00
|
|
|
"You will need to also install https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml into your install location.\n"
|
2018-04-10 20:46:46 +08:00
|
|
|
"See https://howardhinnant.github.io/date/tz.html"
|
|
|
|
)
|
|
|
|
endif()
|
2017-09-01 07:06:18 +08:00
|
|
|
|
2017-08-16 03:47:23 +08:00
|
|
|
vcpkg_from_github(
|
2017-09-01 07:06:18 +08:00
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO HowardHinnant/date
|
2023-07-14 02:36:02 +08:00
|
|
|
REF "v${VERSION}"
|
2021-12-10 09:01:00 +08:00
|
|
|
SHA512 6bdc7cba821d66e17a559250cc0ce0095808e9db81cec9e16eaa4c31abdfa705299c67b72016d9b06b302bc306d063e83a374eb00728071b83a5ad650d59034f
|
2017-09-01 07:06:18 +08:00
|
|
|
HEAD_REF master
|
2019-11-14 14:14:00 +08:00
|
|
|
PATCHES
|
2020-06-24 04:37:41 +08:00
|
|
|
0001-fix-uwp.patch
|
2023-07-27 02:06:59 +08:00
|
|
|
0002-fix-cmake-install.patch
|
2022-04-06 02:18:28 +08:00
|
|
|
fix-uninitialized-values.patch #Update the new version please remove this patch
|
2020-06-24 04:37:41 +08:00
|
|
|
)
|
2021-10-06 07:16:05 +08:00
|
|
|
|
2020-06-24 04:37:41 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
INVERTED_FEATURES
|
|
|
|
remote-api USE_SYSTEM_TZ_DB
|
2017-08-16 03:47:23 +08:00
|
|
|
)
|
2018-04-10 20:46:46 +08:00
|
|
|
|
2021-10-06 07:16:05 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2019-09-18 02:39:29 +08:00
|
|
|
OPTIONS
|
2021-10-06 07:16:05 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2019-11-14 14:14:00 +08:00
|
|
|
-DBUILD_TZ_LIB=ON
|
2017-08-16 03:47:23 +08:00
|
|
|
)
|
|
|
|
|
2021-10-06 07:16:05 +08:00
|
|
|
vcpkg_cmake_install()
|
2023-07-27 02:06:59 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/date)
|
2018-04-10 20:46:46 +08:00
|
|
|
|
2017-09-01 07:06:18 +08:00
|
|
|
vcpkg_copy_pdbs()
|
2017-08-16 03:47:23 +08:00
|
|
|
|
2021-10-06 07:16:05 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
2019-09-18 02:39:29 +08:00
|
|
|
|
2023-07-14 02:36:02 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt")
|
2023-07-27 02:06:59 +08:00
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|