feature: add vcpkg support

This commit is contained in:
Li Yanxu 2025-01-15 22:45:47 +08:00
parent 4f0f7feded
commit fb1f6b878c
2 changed files with 37 additions and 0 deletions

14
vcpkg-configuration.json Normal file
View File

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

23
vcpkg.json Normal file
View File

@ -0,0 +1,23 @@
{
"dependencies": [
"boost-filesystem",
"boost-optional",
"cppcodec",
"draco",
"fmt",
"libiconv",
"libxml2",
"nlohmann-fifo-map",
"zlib"
],
"overrides": [
{
"name": "fmt",
"version": "5.3.0"
},
{
"name": "libiconv",
"version": "1.15-6"
}
]
}