Skip to content

Commit

Permalink
add task.json
Browse files Browse the repository at this point in the history
  • Loading branch information
submada committed May 26, 2022
1 parent 904d169 commit 8adbfd2
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "dub",
"run": false,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "release",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Release(Build)",
"detail": "release build"
},
{
"type": "dub",
"run": true,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "release",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Release(Run)",
"detail": "release run"
},

{
"type": "dub",
"run": false,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "debug",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Debug(Build)",
"detail": "debug build"
},
{
"type": "dub",
"run": true,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "debug",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Debug(Run)",
"detail": "debug run"
},

{
"type": "dub",
"run": false,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "unittest",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Unittest(Build)",
"detail": "unittest build"
},
{
"type": "dub",
"run": true,
"cwd": "${workspaceFolder}",
"compiler": "$current",
"archType": "$current",
"buildType": "unittest",
"configuration": "$current",
"problemMatcher": [
"$dmd"
],
"group": "build",
"label": "dub: Unittest(Run)",
"detail": "unittest run"
}
]
}

0 comments on commit 8adbfd2

Please sign in to comment.