Skip to content

Commit

Permalink
Paint v2.0 - Final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatAggarwal14 committed Nov 21, 2022
1 parent ab81530 commit 2e602f9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 2e602f9

Please sign in to comment.