31 lines
No EOL
725 B
JSON
31 lines
No EOL
725 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
} |