Add build/debug configs

This commit is contained in:
slembcke 2023-10-31 15:59:47 -05:00
parent 71ae3b5d10
commit b0a013c3ec
2 changed files with 37 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "mii emu",
"type": "cppdbg",
"preLaunchTask": "${defaultBuildTask}",
"request": "launch",
"program": "${workspaceFolder}/build-x86_64-redhat-linux/bin/mii_emu",
"cwd": "${workspaceFolder}",
"args": [
"--default",
"--drive", "6:1:disks/dos33master.nib",
],
}
],
}

17
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Make Build",
"type": "shell",
"command": "make all",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}