First commit
This commit is contained in:
16
.zed/tasks.json
Normal file
16
.zed/tasks.json
Normal file
@@ -0,0 +1,16 @@
|
||||
[
|
||||
{
|
||||
"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,
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user