diff --git a/scripts/windows/1-configure.sh b/scripts/windows/1-configure.sh old mode 100644 new mode 100755 index d34dc6c..d389371 --- a/scripts/windows/1-configure.sh +++ b/scripts/windows/1-configure.sh @@ -2,4 +2,6 @@ set -ex +./vcpkg/vcpkg add port lua + cmake . -B bin $1 -DCMAKE_BUILD_TYPE=Release -DBeamMP-Server_ENABLE_LTO=ON -DVCPKG_TARGET_TRIPLET=x64-windows-static diff --git a/vcpkg.json b/vcpkg.json index 3b847b1..85b9cb2 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -2,18 +2,18 @@ "name": "server", "version-string": "0.1.0", "dependencies": [ - "fmt", - "doctest", "boost-asio", - "boost-variant", "boost-spirit", "boost-uuid", + "boost-variant", "cpp-httplib", - "toml11", + "doctest", + "fmt", "libzip", - "rapidjson", "nlohmann-json", "openssl", - "sol2" + "rapidjson", + "sol2", + "toml11" ] -} \ No newline at end of file +}