1
0
mirror of https://github.com/fumiama/simple-http-server.git synced 2026-06-05 00:30:23 +08:00
Files
simple-http-server/.vscode/tasks.json
2026-01-30 23:09:51 +08:00

20 lines
465 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "Build Debug",
"command": "cmake -DCMAKE_BUILD_TYPE=Debug .. && make",
"options": {
"cwd": "${workspaceFolder}/build"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}