Add vcpkg.json and config file

#15302 and #13902
This commit is contained in:
Mark Wiemer 2024-10-26 06:53:28 -07:00
parent d4daa9fd40
commit 4d6de77355
3 changed files with 36 additions and 0 deletions

4
.gitignore vendored
View File

@ -138,3 +138,7 @@ lib/irrlichtmt
# Generated mod storage database
client/mod_storage.sqlite
# mark-wiemer build stuff
minetest-build
vcpkg_installed

14
vcpkg-configuration.json Normal file
View File

@ -0,0 +1,14 @@
{
"default-registry": {
"kind": "git",
"baseline": "6f1ddd6b6878e7e66fcc35c65ba1d8feec2e01f8",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
{
"kind": "artifact",
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip",
"name": "microsoft"
}
]
}

18
vcpkg.json Normal file
View File

@ -0,0 +1,18 @@
{
"dependencies": [
"zlib",
"zstd",
"curl",
"openal-soft",
"libvorbis",
"libogg",
"libjpeg-turbo",
"sqlite3",
"freetype",
"luajit",
"gmp",
"jsoncpp",
"gettext",
"opengl-registry"
]
}