From 4d2cdf1e2e537c472b43f6259f5f80a8198de7a3 Mon Sep 17 00:00:00 2001 From: Lorenc Pekaj Date: Sat, 8 Dec 2018 02:56:04 +1100 Subject: [PATCH] add vscode support --- .vscode/tasks.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .vscode/tasks.json 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