1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 13:49:26 +08:00

add: install win32 platform packages

This commit is contained in:
0O0o0oOoO00
2026-01-23 22:43:19 +08:00
parent e7ecb8cb77
commit bd4ad2a80a

View File

@@ -10,6 +10,14 @@ class Package:
triplets: str
WIN32_PLATFORM_PACKAGES = [
"cpp-httplib",
"jsoncpp",
"spdlog",
"cxxopts",
"cryptopp",
]
ANDROID_PLATFORM_PACKAGES = [
"cpp-httplib",
"jsoncpp",
@@ -65,6 +73,7 @@ def main():
pkgs = []
for android_triplets in ANDROID_PLATFORM_TRIPLETS:
pkgs.extend(get_pkgs(ANDROID_PLATFORM_PACKAGES, android_triplets))
pkgs.extend(get_pkgs(WIN32_PLATFORM_PACKAGES, "x64-windows-static"))
vcpkg_install(pkgs)