From 2e602f90edf99502e641685437025d9888027ce3 Mon Sep 17 00:00:00 2001 From: Akshat Aggarwal Date: Mon, 21 Nov 2022 22:37:24 +0530 Subject: [PATCH] Paint v2.0 - Final commit --- .vscode/tasks.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..c6bb24d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,33 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "label": "C/C++: Build .exe", + "command": "C:\\MinGW\\bin\\g++.exe", + "args": [ + "-g", + "${file}", + "-o", + "a.exe", + "-lbgi", + "-lgdi32", + "-lcomdlg32", + "-luuid", + "-loleaut32", + "-lole32", + ";", + "./a.exe" + ], + "options": { + "cwd": "${workspaceFolder}" + }, + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "compiler: C:\\MinGW\\bin\\g++.exe" + } + ] +} \ No newline at end of file