diff options
| -rw-r--r-- | zenserver/xmake.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zenserver/xmake.lua b/zenserver/xmake.lua index 684b386db..9ee4931eb 100644 --- a/zenserver/xmake.lua +++ b/zenserver/xmake.lua @@ -22,13 +22,13 @@ target("zenserver") add_options("compute") add_packages( - "vcpkg::sentry-native", - "vcpkg::sol2", - "vcpkg::lua", "vcpkg::asio", - "vcpkg::json11", "vcpkg::cxxopts", "vcpkg::http-parser", + "vcpkg::json11", + "vcpkg::lua", "vcpkg::mimalloc", - "vcpkg::rocksdb" + "vcpkg::rocksdb", + "vcpkg::sentry-native", + "vcpkg::sol2" ) |