dfl/examples/scrollbar/.vscode/tasks.json
2024-05-17 22:15:35 +09:00

23 lines
No EOL
436 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dub",
"run": false,
"cwd": ".",
"compiler": "$current",
"archType": "$current",
"buildType": "$current",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "dub: Build scrollbar_example",
"detail": "dub build --compiler=dmd.EXE -a=x86_64 -b=debug -c=application"
}
]
}