mirror of
https://github.com/ineedbots/t6_bot_warfare.git
synced 2025-04-22 01:35:42 +00:00
Compiler task
This commit is contained in:
parent
494a4709f8
commit
a102bd7622
BIN
.vscode/Compiler.exe
vendored
Normal file
BIN
.vscode/Compiler.exe
vendored
Normal file
Binary file not shown.
BIN
.vscode/Irony.dll
vendored
Normal file
BIN
.vscode/Irony.dll
vendored
Normal file
Binary file not shown.
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
@ -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
20
.vscode/tasks.json
vendored
Normal 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
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user