[commonlibsse-ng] Set `fmt_external` for spdlog (#2094)

pull/2096/head
Qudix 2 years ago committed by GitHub
parent 769e036685
commit 03a96709cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/c/commonlibsse-ng/port/xmake.lua
  2. 2
      packages/c/commonlibsse-ng/xmake.lua

@ -43,7 +43,7 @@ option_end()
-- add packages -- add packages
add_requires("fmt", "rapidcsv") add_requires("fmt", "rapidcsv")
add_requires("spdlog", { configs = { header_only = false } }) add_requires("spdlog", { configs = { header_only = false, fmt_external = true } })
if has_config("skse_xbyak") then if has_config("skse_xbyak") then
add_requires("xbyak") add_requires("xbyak")

@ -16,7 +16,7 @@ package("commonlibsse-ng")
add_configs("skse_xbyak", {description = "Enable trampoline support for Xbyak", default = false, type = "boolean"}) add_configs("skse_xbyak", {description = "Enable trampoline support for Xbyak", default = false, type = "boolean"})
add_deps("fmt", "rapidcsv") add_deps("fmt", "rapidcsv")
add_deps("spdlog", { configs = { header_only = false } }) add_deps("spdlog", { configs = { header_only = false, fmt_external = true } })
add_syslinks("version", "user32", "shell32", "ole32", "advapi32") add_syslinks("version", "user32", "shell32", "ole32", "advapi32")

Loading…
Cancel
Save