moved to root

This commit is contained in:
Andrew Zambazos
2026-06-11 14:09:53 +12:00
parent cbf3f085d0
commit a2784f684b
2151 changed files with 0 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 15,
"patch": 0
},
"configurePresets": [
{
"name": "Release",
"displayName": "Release",
"description": "Release build configuration",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/out",
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "Debug",
"displayName": "Debug",
"description": "Debug build configuration",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/out",
"CMAKE_BUILD_TYPE": "Debug"
}
}
],
"buildPresets": [
{
"name": "Release",
"configurePreset": "Release",
"targets": ["install"]
},
{
"name": "Debug",
"configurePreset": "Debug",
"targets": ["install"]
}
]
}