sfcnr/.vscode/tasks.json
2018-12-08 02:56:04 +11:00

27 lines
505 B
JSON

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