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

43 lines
1.2 KiB
JSON
Raw Normal View History

2022-08-25 17:17:53 +02:00
{
"tasks": [
2023-04-02 17:59:15 +02:00
{
"type": "cppbuild",
"label": "C/C++: g++-20 build breakout",
"command": "/usr/bin/g++",
"args": [
"-g",
"-std=c++2a",
"-I${workspaceFolder}/dependencies/include",
"-L${workspaceFolder}/dependencies/library",
"-Wall",
2023-04-02 18:15:17 +02:00
"${workspaceFolder}/breakout/*.hpp",
"${workspaceFolder}/breakout/*.h",
2023-04-02 18:15:17 +02:00
"${workspaceFolder}/breakout/*.cpp",
"${workspaceFolder}/breakout/glad.c",
2023-04-02 17:59:15 +02:00
"-o",
2023-04-02 18:15:17 +02:00
"${workspaceFolder}/breakout/breakout",
2023-04-02 17:59:15 +02:00
"-lglut",
"-lglfw",
"-lGLU",
"-lGL",
"-lm",
"-ldl",
"-pipe",
2023-04-02 18:26:43 +02:00
"-Wno-volatile",
2023-04-02 17:59:15 +02:00
"-O0"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
2022-08-25 17:17:53 +02:00
}
],
"version": "2.0.0"
}