Files
live-wallpaper/.vscode/tasks.json

31 lines
793 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "CMake: configure debug",
"type": "shell",
"command": "cmake",
"args": ["--preset", "debug"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "CMake: build debug",
"type": "shell",
"command": "cmake",
"args": ["--build", "--preset", "debug"],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"dependsOn": "CMake: configure debug"
}
]
}