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"
}
]
}