mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[spdlog] Fix #5143 and update to 1.3.1
This commit is contained in:
parent
b6fe5b5db5
commit
7d9224c83e
@ -1,4 +1,4 @@
|
||||
Source: spdlog
|
||||
Version: 1.3.0
|
||||
Version: 1.3.1
|
||||
Description: Very fast, header only, C++ logging library
|
||||
Build-Depends: fmt
|
||||
|
@ -3,8 +3,8 @@ include(vcpkg_common_functions)
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO gabime/spdlog
|
||||
REF v1.3.0
|
||||
SHA512 019a52d4b6c66287ee2a6e8177457ecbbb78e1cb894f4a0a90b83a84d66cd37b397cdf77892d9116e4c34113bd3277d606d578bc96ec6521ae7745f08b1aa54f
|
||||
REF v1.3.1
|
||||
SHA512 a851a44b6384f493dd312ae0a611d068af46bbfe8daf1c2f61f13d8836a3801f41b339074fbe8da8e428131c82fa5c4a9e3320a55cbdd4b7aff8bb349dfff7dd
|
||||
HEAD_REF v1.x
|
||||
PATCHES
|
||||
disable-master-project-check.patch
|
||||
@ -27,6 +27,17 @@ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
|
||||
# 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)"
|
||||
)
|
||||
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/spdlog)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/spdlog/LICENSE ${CURRENT_PACKAGES_DIR}/share/spdlog/copyright)
|
||||
|
Loading…
x
Reference in New Issue
Block a user