30 lines
609 B
JSON
30 lines
609 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "cpp build active file",
|
|
"command": "/usr/bin/g++",
|
|
"args": [
|
|
"${file}",
|
|
"-lGL",
|
|
"-lGLU",
|
|
"-lglut",
|
|
"-o",
|
|
"${fileDirname}/build/${fileBasenameNoExtension}"
|
|
],
|
|
"options": {
|
|
"cwd": "/usr/bin"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |