engineer-thesis-WUT/.vscode/tasks.json

37 lines
1.1 KiB
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++-11 build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"-std=c++2a",
"-I${workspaceFolder}/dependencies/include",
"-L${workspaceFolder}/dependencies/library",
"-Wall",
"${workspaceFolder}/Engine/engine/*.hpp",
"${workspaceFolder}/Engine/engine/*.cpp",
"${workspaceFolder}/Engine/engine/glad.c",
"-o",
"${workspaceFolder}/Engine/engine/match", "-lglut", "-lglfw", "-lGLU", "-lGL", "-lm",
"-ldl",
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}