Skip to content

Commit

Permalink
Add CMakePresets.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0xFF committed Oct 24, 2024
1 parent b8ff417 commit aee660d
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"version": 4,
"configurePresets": [
{
"name": "VS",
"displayName": "Visual Studio 17 2022",
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/build_cmake/build/${presetName}",
"hidden": true
},
{
"name": "NINJA",
"displayName": "Ninja",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build_cmake/build/${presetName}",
"hidden": true
},
{
"name": "DEBUGGER",
"cacheVariables": {
"DEBUGGER_INCLUDED": {
"type": "BOOL",
"value": "ON"
}
},
"hidden": true
},
{
"name": "WIN32",
"architecture": {
"value": "x64",
"strategy": "set"
},
"cacheVariables": {
"USE_QT": {
"type": "BOOL",
"value": "ON"
}
},
"hidden": true
},
{
"name": "win32-vs",
"inherits": [
"WIN32",
"VS"
]
},
{
"name": "win32-vs-debugger",
"inherits": [
"WIN32",
"VS",
"DEBUGGER"
]
}
],
"buildPresets": [
{
"name": "win32-vs",
"configurePreset": "win32-vs",
"configuration": "RelWithDebInfo",
"targets": [
"Play",
"CodeGenTestSuite"
]
},
{
"name": "win32-vs-debugger",
"configurePreset": "win32-vs-debugger",
"targets": [
"Play"
]
}
]
}

0 comments on commit aee660d

Please sign in to comment.