diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..ab293e3 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,35 @@ +{ + "tasks": [ + { + "type": "shell", + "command": "compiler 2D_Engine", + "label": "Compiler", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": false + } + }, + { + "type": "shell", + "command": "./2D_Engine", + "label": "Launch", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": false + } + }, + { + "type": "shell", + "command": "compiler 2D_Engine; ./2D_Engine", + "label": "Compiler and Launch", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + } + ], + "version": "2.0.0" +} \ No newline at end of file