engineer-thesis-WUT/.vscode/tasks.json
2022-08-28 18:40:39 +02:00

27 lines
754 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++-11 build active file",
"command": "/usr/bin/g++",
"args": [
"-Wall", "${workspaceFolder}/Engine/engine/*.cpp",
"-o",
"${workspaceFolder}/Engine/engine/match", "-lglfw", "-lGLU", "-lGL", "-lm",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}