diff options
| -rw-r--r-- | zencore/xmake.lua | 3 | ||||
| -rw-r--r-- | zenserver/xmake.lua | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua index 5923b99c3..eade07700 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -39,5 +39,6 @@ target('zencore') -- xmake to use the correct order, and "syslinks" is used to force the -- arguments to the end of the line (otherwise they can appear before -- curl and cause more errors). - add_syslinks("ssl", "crypto") + add_syslinks("crypto") + add_syslinks("dl") end diff --git a/zenserver/xmake.lua b/zenserver/xmake.lua index b29d2cef3..fc5dca88a 100644 --- a/zenserver/xmake.lua +++ b/zenserver/xmake.lua @@ -30,10 +30,6 @@ target("zenserver") "vcpkg::http-parser" ) - if is_plat("linux") then - add_syslinks("dl") - end - add_packages( "vcpkg::cxxopts", "vcpkg::mimalloc") |