mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:58:21 +08:00
57 lines
2.2 KiB
CMake
57 lines
2.2 KiB
CMake
if (NOT VCPKG_TARGET_IS_WINDOWS)
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO abseil/abseil-cpp
|
|
REF 6f9d96a1f41439ac172ee2ef7ccd8edf0e5d068c #LTS 20200923, Patch 3
|
|
SHA512 f64fee62863f2103c1991136fd3bc2b71cd28c7ff62138ac991b5a7f81780a05e0e2bdd6a119d02e1d70dd54f989f584093957efaec94f26c9d6c3f4ee37f8ae
|
|
HEAD_REF master
|
|
PATCHES
|
|
# in C++17 mode, use std::any, std::optional, std::string_view, std::variant
|
|
# instead of the library replacement types
|
|
# in C++11 mode, force use of library replacement types, otherwise the automatic
|
|
# detection can cause ABI issues depending on which compiler options
|
|
# are enabled for consuming user code
|
|
fix-cxx-standard.patch
|
|
# Official patch https://github.com/abseil/abseil-cpp/commit/58a9c6d53f93078101c2c0bd98d2951e74328a55
|
|
fix-msvc-flags.patch
|
|
)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
cxx17 ABSL_USE_CXX17
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
OPTIONS ${FEATURE_OPTIONS}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/absl TARGET_PATH share/absl)
|
|
|
|
vcpkg_copy_pdbs()
|
|
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
|
|
${CURRENT_PACKAGES_DIR}/include/absl/time/internal/cctz/testdata
|
|
)
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/absl/base/config.h
|
|
"#elif defined(ABSL_CONSUME_DLL)" "#elif 1"
|
|
)
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/absl/base/internal/thread_identity.h
|
|
"&& !defined(ABSL_CONSUME_DLL)" "&& 0"
|
|
)
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/absl/container/internal/hashtablez_sampler.h
|
|
"!defined(ABSL_CONSUME_DLL)" "0"
|
|
)
|
|
endif()
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|