dfl/.vscode/tasks.json
2023-01-24 10:56:14 +09:00

50 lines
No EOL
789 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "dub",
"label": "dub build dfl",
"run": false,
"cwd": ".",
"compiler": "$current",
"archType": "$current",
"buildType": "$current",
"configuration": "library",
"problemMatcher": [
"$dmd"
],
"dub_args": [
"--parallel"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
{
"type": "dub",
"label": "dub test dfl",
"run": true,
"cwd": ".",
"compiler": "$current",
"archType": "$current",
"buildType": "unittest",
"configuration": "unittest",
"problemMatcher": [
"$dmd"
],
"dub_args": [
"--parallel"
],
"group": {
"kind": "test"
},
"presentation": {
"clear": true
}
}
]
}