Added vcpkg

This commit is contained in:
Dr. Patrick Urbanke
2025-03-18 03:40:30 +01:00
parent fc0cee6655
commit 094bd62bd2
4 changed files with 29 additions and 0 deletions

2
.gitignore vendored
View File

@@ -30,3 +30,5 @@
*.exe
*.out
*.app
vcpkg_installed/

1
vcpkg Submodule

Submodule vcpkg added at 043abf2fa4

14
vcpkg-configuration.json Normal file
View File

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

12
vcpkg.json Normal file
View File

@@ -0,0 +1,12 @@
{
"dependencies": [
{
"name": "reflectcpp",
"version>=": "0.18.0"
},
{
"name": "sqlite3",
"version>=": "3.49.1"
}
]
}