feat: Add Cmake preset

This commit is contained in:
Petr Mironychev
2026-07-19 14:05:42 +02:00
parent 34d4f2c517
commit bd809edb8a
2 changed files with 23 additions and 0 deletions

21
CMakePresets.json Normal file
View File

@@ -0,0 +1,21 @@
{
"version": 4,
"cmakeMinimumRequired": { "major": 3, "minor": 23 },
"configurePresets": [
{
"name": "default",
"displayName": "Default (pass CMAKE_PREFIX_PATH to a Qt Creator dev package)",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default"
}
]
}