Skip to content

Commit

Permalink
Add vscode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Gillou68310 committed Jun 6, 2023
1 parent 68c56ab commit 569b082
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
}
]
}
}
},
"terminal.integrated.tabs.enableAnimation": false
}
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Docker image",
"type": "shell",
"command": "docker --context=desktop-linux-mutagen run --rm -ti --mount src=$(pwd),target=/dukenukemzerohour,type=bind dukenukemzerohour",
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"echo": false,
"showReuseMessage": false,
"panel": "dedicated",
"clear": true,
"close": true
}
},
{
"label": "Run GDB Server",
"type": "shell",
"command": "tools/debugger/win32/gdbserver.bat",
"presentation": {
"echo": false,
"showReuseMessage": false,
"panel": "dedicated",
"clear": true,
"close": true
}
}
]
}

0 comments on commit 569b082

Please sign in to comment.