aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenutil/xmake.lua')
-rw-r--r--src/zenutil/xmake.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/zenutil/xmake.lua b/src/zenutil/xmake.lua
index bc33adf9e..83a6b7f93 100644
--- a/src/zenutil/xmake.lua
+++ b/src/zenutil/xmake.lua
@@ -6,9 +6,14 @@ target('zenutil')
add_headerfiles("**.h")
add_files("**.cpp")
add_includedirs("include", {public=true})
- add_deps("zencore", "zenhttp", "spdlog")
+ add_deps("zencore", "zenhttp")
add_deps("cxxopts")
add_deps("robin-map")
+ add_packages("json11")
+
+ if is_plat("linux", "macosx") then
+ add_packages("openssl3")
+ end
if is_plat("linux") then
add_includedirs("$(projectdir)/thirdparty/systemd/include")