sfcnr/.vscode/tasks.json

27 lines
507 B
JSON
Raw Normal View History

2018-12-07 15:56:04 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build-normal",
//"type": "shell",
"command": "${workspaceRoot}/pawno/pawncc.exe",
"args": [
"${file}",
"-Dgamemodes",
"-;+",
"-(+",
2018-12-08 13:58:24 +00:00
//"-d3"
2018-12-07 15:56:04 +00:00
],
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": false,
"presentation": {
"reveal": "silent",
"panel": "dedicated"
},
"problemMatcher": "$pawncc"
}
]
}