mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-01 21:58:55 +08:00
ab8067a86b
* [spdlog] support wchar when targeting Windows * filename will be `std::string` * functions `wstr_to_utf8buf`, `utf8_to_wstrbuf` will be added * [spdlog] update baseline and git-tree SHA * [spdlog] make wchar_t options to port features * new feature: `wchar`, `wchar-filenames` * update git-tree SHA * Update ports/spdlog/portfile.cmake Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> * Update ports/spdlog/portfile.cmake Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> * [spdlog] more clear SPDLOG_WCHAR_FILENAMES usage * Update versions/s-/spdlog.json * Update ports/spdlog/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Update ports/spdlog/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Update ports/spdlog/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * [spdlog] update version SHA * [spdlog] update port version Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
69 lines
2.2 KiB
CMake
69 lines
2.2 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO gabime/spdlog
|
|
REF v1.8.5
|
|
SHA512 77cc9df0c40bbdbfe1f3e5818dccf121918bfceac28f2608f39e5bf944968b7e8e24a6fc29f01bc58a9bae41b8892d49cfb59c196935ec9868884320b50f130c
|
|
HEAD_REF v1.x
|
|
PATCHES fix-mingw-build.patch
|
|
)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
benchmark SPDLOG_BUILD_BENCH
|
|
wchar SPDLOG_WCHAR_SUPPORT
|
|
)
|
|
|
|
# configured in triplet file
|
|
if(NOT DEFINED SPDLOG_WCHAR_FILENAMES)
|
|
set(SPDLOG_WCHAR_FILENAMES OFF)
|
|
endif()
|
|
if(NOT VCPKG_TARGET_IS_WINDOWS)
|
|
if("wchar" IN_LIST FEATURES)
|
|
message(WARNING "Feature 'wchar' is only supported for Windows and has no effect on other platforms.")
|
|
elseif(SPDLOG_WCHAR_FILENAMES)
|
|
message(FATAL_ERROR "Build option 'SPDLOG_WCHAR_FILENAMES' is for Windows.")
|
|
endif()
|
|
endif()
|
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SPDLOG_BUILD_SHARED)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DSPDLOG_FMT_EXTERNAL=ON
|
|
-DSPDLOG_INSTALL=ON
|
|
-DSPDLOG_BUILD_SHARED=${SPDLOG_BUILD_SHARED}
|
|
-DSPDLOG_WCHAR_FILENAMES=${SPDLOG_WCHAR_FILENAMES}
|
|
-DSPDLOG_BUILD_EXAMPLE=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/spdlog)
|
|
vcpkg_fixup_pkgconfig()
|
|
vcpkg_copy_pdbs()
|
|
|
|
# use vcpkg-provided fmt library (see also option SPDLOG_FMT_EXTERNAL above)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/bundled)
|
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/fmt.h
|
|
"#if !defined(SPDLOG_FMT_EXTERNAL)"
|
|
"#if 0 // !defined(SPDLOG_FMT_EXTERNAL)"
|
|
)
|
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/ostr.h
|
|
"#if !defined(SPDLOG_FMT_EXTERNAL)"
|
|
"#if 0 // !defined(SPDLOG_FMT_EXTERNAL)"
|
|
)
|
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/chrono.h
|
|
"#if !defined(SPDLOG_FMT_EXTERNAL)"
|
|
"#if 0 // !defined(SPDLOG_FMT_EXTERNAL)"
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include
|
|
${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
# Handle copyright
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|