2017-05-20 19:01:31 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO gabime/spdlog
|
2023-05-22 09:05:01 +08:00
|
|
|
REF "v${VERSION}"
|
2024-05-03 13:04:19 +08:00
|
|
|
SHA512 d8f36a3d65a43d8c64900e46137827aadb05559948b2f5a389bea16ed1bfac07d113ee11cf47970913298d6c37400355fe6895cda8fa6dcf6abd9da0d8f199e9
|
2018-07-05 09:54:04 +08:00
|
|
|
HEAD_REF v1.x
|
2016-10-12 05:06:50 +08:00
|
|
|
)
|
|
|
|
|
2020-06-11 17:42:04 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
2021-03-25 03:47:26 +08:00
|
|
|
FEATURES
|
2022-04-08 00:58:33 +08:00
|
|
|
benchmark SPDLOG_BUILD_BENCH
|
|
|
|
wchar SPDLOG_WCHAR_SUPPORT
|
2020-06-11 17:42:04 +08:00
|
|
|
)
|
2019-06-19 02:11:06 +08:00
|
|
|
|
2022-05-24 05:17:10 +08:00
|
|
|
# SPDLOG_WCHAR_FILENAMES can only be configured in triplet file since it is an alternative (not additive)
|
2021-07-16 07:00:28 +08:00
|
|
|
if(NOT DEFINED SPDLOG_WCHAR_FILENAMES)
|
|
|
|
set(SPDLOG_WCHAR_FILENAMES OFF)
|
|
|
|
endif()
|
2023-05-22 09:05:01 +08:00
|
|
|
if(NOT VCPKG_TARGET_IS_WINDOWS AND SPDLOG_WCHAR_FILENAMES)
|
|
|
|
message(FATAL_ERROR "Build option 'SPDLOG_WCHAR_FILENAMES' is for Windows.")
|
2021-07-16 07:00:28 +08:00
|
|
|
endif()
|
|
|
|
|
2021-02-09 06:01:00 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SPDLOG_BUILD_SHARED)
|
|
|
|
|
2021-04-01 05:27:55 +08:00
|
|
|
vcpkg_cmake_configure(
|
2022-11-17 05:32:00 +08:00
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2017-02-25 23:52:57 +08:00
|
|
|
OPTIONS
|
2020-06-11 17:42:04 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2018-12-17 23:52:25 +08:00
|
|
|
-DSPDLOG_FMT_EXTERNAL=ON
|
2019-11-26 06:35:53 +08:00
|
|
|
-DSPDLOG_INSTALL=ON
|
2021-02-09 06:01:00 +08:00
|
|
|
-DSPDLOG_BUILD_SHARED=${SPDLOG_BUILD_SHARED}
|
2021-07-16 07:00:28 +08:00
|
|
|
-DSPDLOG_WCHAR_FILENAMES=${SPDLOG_WCHAR_FILENAMES}
|
2021-07-01 22:36:27 +08:00
|
|
|
-DSPDLOG_BUILD_EXAMPLE=OFF
|
2016-10-12 05:06:50 +08:00
|
|
|
)
|
|
|
|
|
2021-04-01 05:27:55 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/spdlog)
|
|
|
|
vcpkg_fixup_pkgconfig()
|
2019-06-19 02:11:06 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2022-05-24 05:17:10 +08:00
|
|
|
# add support for integration other than cmake
|
2022-04-08 00:58:33 +08:00
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/tweakme.h
|
|
|
|
"// #define SPDLOG_FMT_EXTERNAL"
|
2022-05-24 05:17:10 +08:00
|
|
|
"#ifndef SPDLOG_FMT_EXTERNAL\n#define SPDLOG_FMT_EXTERNAL\n#endif"
|
2021-04-10 00:47:48 +08:00
|
|
|
)
|
2023-05-22 09:05:01 +08:00
|
|
|
if(SPDLOG_WCHAR_SUPPORT)
|
2022-05-24 05:17:10 +08:00
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/tweakme.h
|
|
|
|
"// #define SPDLOG_WCHAR_TO_UTF8_SUPPORT"
|
|
|
|
"#ifndef SPDLOG_WCHAR_TO_UTF8_SUPPORT\n#define SPDLOG_WCHAR_TO_UTF8_SUPPORT\n#endif"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if(SPDLOG_WCHAR_FILENAMES)
|
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/spdlog/tweakme.h
|
|
|
|
"// #define SPDLOG_WCHAR_FILENAMES"
|
|
|
|
"#ifndef SPDLOG_WCHAR_FILENAMES\n#define SPDLOG_WCHAR_FILENAMES\n#endif"
|
|
|
|
)
|
|
|
|
endif()
|
2021-04-10 00:47:48 +08:00
|
|
|
|
2023-05-22 09:05:01 +08:00
|
|
|
file(REMOVE_RECURSE
|
|
|
|
"${CURRENT_PACKAGES_DIR}/include/spdlog/fmt/bundled"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
|
|
|
)
|
2019-01-17 18:02:08 +08:00
|
|
|
|
2023-05-22 09:05:01 +08:00
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|