19 lines
514 B
JSON
19 lines
514 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Bits Runner Builder (Debug)",
|
|
"type": "shell",
|
|
"command": "cmake -B build && cmake --build build --config Debug",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Clean",
|
|
"type": "shell",
|
|
"command": "rm -rf build *.o *.asm; find ./ -perm +100 -type f -maxdepth 1 -delete"
|
|
}
|
|
]
|
|
} |