removed file

This commit is contained in:
2024-05-07 02:12:16 +03:00
parent 828c959359
commit c6d0c0f735
2 changed files with 34 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1 +1 @@
/cmake-build-debug/ /cmake-build/

33
CMakePresets.json Normal file
View File

@@ -0,0 +1,33 @@
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/cmake-build/build/${presetName}",
"installDir": "${sourceDir}/cmake-build/install/${presetName}",
"cacheVariables": {
}
},
{
"name": "x64-debug",
"displayName": "Debug",
"inherits": "base",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "x64-release",
"displayName": "Release",
"inherits": "x64-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}