Selaa lähdekoodia

spdlog: fix wchar_console config (#7123)

* spdlog: fix wchar_console config

* Update xmake.lua
star9029 5 kuukautta sitten
vanhempi
commit
532bbe6eb3
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      packages/s/spdlog/xmake.lua

+ 1 - 0
packages/s/spdlog/xmake.lua

@@ -94,6 +94,7 @@ package("spdlog")
         table.insert(configs, "-DSPDLOG_WCHAR_SUPPORT=" .. (package:config("wchar") and "ON" or "OFF"))
         table.insert(configs, "-DSPDLOG_WCHAR_FILENAMES=" .. (package:config("wchar_filenames") and "ON" or "OFF"))
         table.insert(configs, "-DSPDLOG_UTF8_TO_WCHAR_CONSOLE=" .. (package:config("wchar_console") and "ON" or "OFF"))
+        table.insert(configs, "-DSPDLOG_WCHAR_CONSOLE=" .. (package:config("wchar_console") and "ON" or "OFF"))
         import("package.tools.cmake").install(package, configs)
     end)