This commit is contained in:
lipe89 2026-03-12 09:39:09 +00:00
commit e4c8917154
16 changed files with 319 additions and 0 deletions

31
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,31 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build C++ (g++)",
"type": "shell",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-Wall",
"-Wextra",
"-lGL",
"-lGLU",
"-lglut"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": [
"$gcc"
]
}
]
}