aca-tasks/CMakePresets.json

30 lines
701 B
JSON
Raw Permalink Normal View History

2023-11-07 20:24:24 +00:00
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
2023-12-02 13:34:06 +00:00
"name": "task@release",
"displayName": "Task Release build",
"description": "Builds the target as release",
2023-11-07 20:24:24 +00:00
"generator": "Ninja",
2023-12-02 13:34:06 +00:00
"binaryDir": "${sourceDir}/.out/task-release",
2023-11-07 20:24:24 +00:00
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
2023-12-02 13:34:06 +00:00
},
{
"name": "task@debug",
"displayName": "Task Debug build",
"description": "Builds the target as debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/.out/task-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
2023-11-07 20:24:24 +00:00
}
]
}