Files
crazycrazylife/.zed/tasks.json
2026-03-28 11:48:37 +02:00

17 lines
616 B
JSON

[
{
"label": "CMake Build & Run Debug",
"command": "cmake -B cmake-build-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build cmake-build-debug --config Debug -j && ./cmake-build-debug/CrazyCrazyLife",
"reveal": "always",
"use_new_terminal": false,
"allow_concurrent_runs": true,
},
{
"label": "CMake Build & Run Release",
"command": "cmake -B cmake-build-release -DCMAKE_BUILD_TYPE=Release && cmake --build cmake-build-release --config Release -j && ./cmake-build-release/CrazyCrazyLife",
"reveal": "always",
"use_new_terminal": false,
"allow_concurrent_runs": true,
},
]