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

41 lines
1.2 KiB
JSON
Raw Normal View History

2022-08-25 17:17:53 +02:00
{
"tasks": [
{
"type": "cppbuild",
2022-09-10 13:07:13 +02:00
"label": "C/C++: g++-20 build active file",
2022-08-27 21:43:58 +02:00
"command": "/usr/bin/g++",
2022-08-25 17:17:53 +02:00
"args": [
2022-08-29 19:53:36 +02:00
"-g",
2022-09-06 21:52:06 +02:00
"-std=c++2a",
2022-08-29 19:53:36 +02:00
"-I${workspaceFolder}/dependencies/include",
"-L${workspaceFolder}/dependencies/library",
2023-03-14 02:17:42 +01:00
"-Wall",
"${workspaceFolder}/Engine/engine/*.hpp",
2022-08-29 21:01:55 +02:00
"${workspaceFolder}/Engine/engine/*.cpp",
2022-08-28 19:20:00 +02:00
"${workspaceFolder}/Engine/engine/glad.c",
2022-08-25 17:17:53 +02:00
"-o",
2023-03-14 02:17:42 +01:00
"${workspaceFolder}/Engine/engine/match",
"-lglut",
"-lglfw",
"-lGLU",
"-lGL",
"-lm",
2023-03-19 16:59:13 +01:00
"-ldl",
"-pipe",
"-O0"
2022-08-25 17:17:53 +02:00
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}