Added CI/CD.
Some checks failed
Build & Release / Linux-AARCH64-Build (push) Failing after 8s
Build & Release / Linux-AMD64-Build (push) Successful in 14s
Build & Release / Windows-AMD64-Build (push) Failing after 21s

This commit is contained in:
Arron David Nelson 2024-07-01 19:53:57 -07:00
parent 8d612ea31b
commit d6242a7fad
3 changed files with 35 additions and 0 deletions

12
CMakePresets.json Normal file
View File

@ -0,0 +1,12 @@
{
"version": 3,
"configurePresets": [
{
"name": "default",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
}
]
}

14
vcpkg-configuration.json Normal file
View File

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

9
vcpkg.json Normal file
View File

@ -0,0 +1,9 @@
{
"dependencies" : [ "openssl", "zlib", {
"name" : "openssl",
"version>=" : "3.2.0#2"
}, {
"name" : "freetype",
"version>=" : "2.13.2"
} ]
}