diff options
| author | Stefan Boberg <[email protected]> | 2025-10-24 21:42:29 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-24 21:42:29 +0200 |
| commit | eba91a73cfe1bac15f46bfc0d37a4419a26a5828 (patch) | |
| tree | 9035ffc911d977dd06740ebab926f2fbc07af96b /src/zenserver/xmake.lua | |
| parent | place header in the right place (diff) | |
| download | zen-eba91a73cfe1bac15f46bfc0d37a4419a26a5828.tar.xz zen-eba91a73cfe1bac15f46bfc0d37a4419a26a5828.zip | |
sol in-tree
Diffstat (limited to 'src/zenserver/xmake.lua')
| -rw-r--r-- | src/zenserver/xmake.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/zenserver/xmake.lua b/src/zenserver/xmake.lua index a20c92385..127a9f06e 100644 --- a/src/zenserver/xmake.lua +++ b/src/zenserver/xmake.lua @@ -18,7 +18,7 @@ target("zenserver") add_includedirs(".") set_symbols("debug") - add_deps("protozero", "asio", "cxxopts") + add_deps("protozero", "asio", "cxxopts", "sol2") if is_mode("release") then set_optimize("fastest") @@ -52,8 +52,7 @@ target("zenserver") "vcpkg::http-parser", "vcpkg::json11", "vcpkg::lua", - "vcpkg::mimalloc", - "vcpkg::sol2" + "vcpkg::mimalloc" ) -- to work around some unfortunate Ctrl-C behaviour on Linux/Mac due to |