add lua to vcpkg dependencies on windows

This commit is contained in:
Lion Kortlepel 2024-01-08 10:49:04 +01:00 committed by Lion
parent 8695413211
commit 6ee816d10d
2 changed files with 9 additions and 7 deletions

2
scripts/windows/1-configure.sh Normal file → Executable file
View File

@ -2,4 +2,6 @@
set -ex 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 cmake . -B bin $1 -DCMAKE_BUILD_TYPE=Release -DBeamMP-Server_ENABLE_LTO=ON -DVCPKG_TARGET_TRIPLET=x64-windows-static

View File

@ -2,18 +2,18 @@
"name": "server", "name": "server",
"version-string": "0.1.0", "version-string": "0.1.0",
"dependencies": [ "dependencies": [
"fmt",
"doctest",
"boost-asio", "boost-asio",
"boost-variant",
"boost-spirit", "boost-spirit",
"boost-uuid", "boost-uuid",
"boost-variant",
"cpp-httplib", "cpp-httplib",
"toml11", "doctest",
"fmt",
"libzip", "libzip",
"rapidjson",
"nlohmann-json", "nlohmann-json",
"openssl", "openssl",
"sol2" "rapidjson",
"sol2",
"toml11"
] ]
} }