Compiler task

This commit is contained in:
ineedbots 2021-09-03 12:44:28 -06:00
parent 494a4709f8
commit a102bd7622
4 changed files with 27 additions and 1 deletions

BIN
.vscode/Compiler.exe vendored Normal file

Binary file not shown.

BIN
.vscode/Irony.dll vendored Normal file

Binary file not shown.

View File

@ -4,5 +4,11 @@
"gsc"
],
"editor.defaultFormatter": "chiehyu.vscode-astyle",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"triggerTaskOnSave.tasks": {
"Compile current GSC File": [
"*.gsc"
]
}
}

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

@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Compile current GSC File",
"type": "shell",
"options": {
"cwd": "${fileDirname}"
},
"command": "${workspaceRoot}/.vscode/Compiler.exe",
"args": [
"\"${fileBasename}\""
],
"problemMatcher": [],
"isBackground": true
}
]
}