Some changes

This commit is contained in:
Federico Aponte
2022-06-21 23:13:15 +02:00
parent 661b20f256
commit aba386a11c
10 changed files with 1034 additions and 71 deletions

32
CMakePresets.json Normal file
View File

@@ -0,0 +1,32 @@
{
"version": 3,
"configurePresets": [
{
"name": "vcpkg",
"displayName": "vcpkg Config",
"description": "Build using vcpkg as a package manager",
"generator": "Unix Makefiles",
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_EXPORT_COMPILE_COMMANDS": true
}
}
],
"buildPresets": [
{
"name": "vcpkg",
"configurePreset": "vcpkg",
"jobs": 16
}
],
"testPresets": [
{
"name": "default",
"configurePreset": "vcpkg",
"output": { "outputOnFailure": true },
"execution": { "noTestsAction": "error", "stopOnFailure": true }
}
]
}