Intergrate vscode and gmake

This commit is contained in:
2021-01-28 07:20:49 -05:00
parent 469d1dfcb3
commit ac6f46345a
5 changed files with 138 additions and 3 deletions

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

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch executable",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "compile",
"internalConsoleOptions": "openOnSessionStart"
}
]
}

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

@@ -0,0 +1,35 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "compile",
"type": "shell",
"command": "make compile"
},
{
"label": "install",
"type": "shell",
"command": "make install"
},
{
"label": "clean",
"type": "shell",
"command": "make clean"
},
{
"label": "build",
"type": "shell",
"command": "make build"
},
{
"label": "run",
"type": "shell",
"command": "make run"
},
{
"label": "test",
"type": "shell",
"command": "make test"
}
]
}