mirror of
https://github.com/buserror/mii_emu.git
synced 2024-11-22 01:30:51 +00:00
Add build/debug configs
This commit is contained in:
parent
71ae3b5d10
commit
b0a013c3ec
20
.vscode/launch.json
vendored
Normal file
20
.vscode/launch.json
vendored
Normal 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
17
.vscode/tasks.json
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user