diff --git a/.vscode/Compiler.exe b/.vscode/Compiler.exe new file mode 100644 index 0000000..7f57215 Binary files /dev/null and b/.vscode/Compiler.exe differ diff --git a/.vscode/Irony.dll b/.vscode/Irony.dll new file mode 100644 index 0000000..ebb1fe5 Binary files /dev/null and b/.vscode/Irony.dll differ diff --git a/.vscode/settings.json b/.vscode/settings.json index ef0aeab..b1985ef 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,11 @@ "gsc" ], "editor.defaultFormatter": "chiehyu.vscode-astyle", - "editor.formatOnSave": true + "editor.formatOnSave": true, + + "triggerTaskOnSave.tasks": { + "Compile current GSC File": [ + "*.gsc" + ] + } } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..7dc43d5 --- /dev/null +++ b/.vscode/tasks.json @@ -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 + } + ] +} \ No newline at end of file