From a1d05dcf27b2ea170c103f04fb269b1338d9844c Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Thu, 17 Oct 2024 18:06:35 +0200 Subject: [PATCH] Using VsCode for programming !! :-) --- .vscode/tasks.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .vscode/tasks.json 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