2020-06-11 08:56:46 +08:00
|
|
|
if (NOT VCPKG_TARGET_IS_WINDOWS)
|
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
endif()
|
2019-05-03 13:57:43 +08:00
|
|
|
|
2020-05-01 08:22:56 +08:00
|
|
|
set(ABSEIL_PATCHES
|
|
|
|
fix-uwp-build.patch
|
|
|
|
|
|
|
|
# This patch is an upstream commit, the related PR: https://github.com/abseil/abseil-cpp/pull/637
|
|
|
|
fix-MSVCbuildfail.patch
|
2020-06-02 07:15:54 +08:00
|
|
|
|
|
|
|
# Remove this patch in next update, see https://github.com/google/cctz/pull/145
|
|
|
|
fix-arm-build.patch
|
2020-05-01 08:22:56 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
if("cxx17" IN_LIST FEATURES)
|
|
|
|
# in C++17 mode, use std::any, std::optional, std::string_view, std::variant
|
|
|
|
# instead of the library replacement types
|
|
|
|
list(APPEND ABSEIL_PATCHES fix-use-cxx17-stdlib-types.patch)
|
|
|
|
else()
|
|
|
|
# fore use of library replacement types, otherwise the automatic
|
|
|
|
# detection can cause ABI issues depending on which compiler options
|
|
|
|
# are enabled for consuming user code
|
|
|
|
list(APPEND ABSEIL_PATCHES fix-lnk2019-error.patch)
|
|
|
|
endif()
|
|
|
|
|
2017-09-29 02:38:37 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO abseil/abseil-cpp
|
2020-05-01 08:22:56 +08:00
|
|
|
REF 06f0e767d13d4d68071c4fc51e25724e0fc8bc74 #commit 2020-03-03
|
2020-03-06 08:01:57 +08:00
|
|
|
SHA512 f6e2302676ddae39d84d8ec92dbd13520ae214013b43455f14ced3ae6938b94cedb06cfc40eb1781dac48f02cd35ed80673ed2d871541ef4438c282a9a4133b9
|
2017-09-29 02:38:37 +08:00
|
|
|
HEAD_REF master
|
2020-05-01 08:22:56 +08:00
|
|
|
PATCHES ${ABSEIL_PATCHES}
|
2017-09-29 02:38:37 +08:00
|
|
|
)
|
|
|
|
|
2020-06-11 08:56:46 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
2020-04-04 01:26:50 +08:00
|
|
|
if("cxx17" IN_LIST FEATURES)
|
2020-03-28 11:52:58 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
endif()
|
|
|
|
|
2017-09-29 02:38:37 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
2020-03-28 11:52:58 +08:00
|
|
|
OPTIONS
|
|
|
|
-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}
|
2017-09-29 02:38:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
2019-08-28 06:52:18 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/absl TARGET_PATH share/absl)
|
2017-09-29 02:38:37 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
2019-07-16 02:37:40 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
|
|
|
${CURRENT_PACKAGES_DIR}/include/absl/copts
|
|
|
|
${CURRENT_PACKAGES_DIR}/include/absl/strings/testdata
|
2020-03-06 08:01:57 +08:00
|
|
|
${CURRENT_PACKAGES_DIR}/include/absl/time/internal/cctz/testdata)
|
|
|
|
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|