diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..288c117 --- /dev/null +++ b/.vscode/tasks.json @@ -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" + } + ] +} \ No newline at end of file