add vscode support

This commit is contained in:
Lorenc Pekaj 2018-12-08 02:56:04 +11:00
parent 309945b6de
commit 4d2cdf1e2e

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

@ -0,0 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build-normal",
//"type": "shell",
"command": "${workspaceRoot}/pawno/pawncc.exe",
"args": [
"${file}",
"-Dgamemodes",
"-;+",
"-(+",
"-d3"
],
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": false,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$pawncc"
}
]
}