update spdlog (#1638)

pull/1639/head
Hoildkv 2 years ago committed by GitHub
parent 53e27c86b1
commit d4331b4565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      packages/s/spdlog/xmake.lua

@ -5,6 +5,7 @@ package("spdlog")
set_urls("https://github.com/gabime/spdlog/archive/$(version).zip",
"https://github.com/gabime/spdlog.git")
add_versions("v1.11.0", "33f83c6b86ec0fbbd0eb0f4e980da6767494dc0ad063900bcfae8bc3e9c75f21")
add_versions("v1.10.0", "7be28ff05d32a8a11cfba94381e820dd2842835f7f319f843993101bcab44b66")
add_versions("v1.9.2", "130bd593c33e2e2abba095b551db6a05f5e4a5a19c03ab31256c38fa218aa0a6")
add_versions("v1.9.1", "1a383a1d6bf604759c310a0b464a83afc54cc3147192d61c3d0c59695b38ff79")
@ -17,9 +18,9 @@ package("spdlog")
add_versions("v1.4.2", "56b90f0bd5b126cf1b623eeb19bf4369516fa68f036bbc22d9729d2da511fb5a")
add_versions("v1.3.1", "db6986d0141546d4fba5220944cc1f251bd8afdfc434bda173b4b0b6406e3cd0")
add_configs("header_only", {description = "Use header only", default = true, type = "boolean"})
add_configs("fmt_external", {description = "Use external fmt library instead of bundled", default = false, type = "boolean"})
add_configs("noexcept", {description = "Compile with -fno-exceptions. Call abort() on any spdlog exceptions", default = false, type = "boolean"})
add_configs("header_only", {description = "Use header only version.", default = true, type = "boolean"})
add_configs("fmt_external", {description = "Use external fmt library instead of bundled.", default = false, type = "boolean"})
add_configs("noexcept", {description = "Compile with -fno-exceptions. Call abort() on any spdlog exceptions.", default = false, type = "boolean"})
if is_plat("windows") then
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})

Loading…
Cancel
Save