45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "C/C++: g++ build active file",
|
|
"command": "/usr/bin/g++",
|
|
"args": [
|
|
"-fdiagnostics-color=always",
|
|
"-g",
|
|
"-std=c++26",
|
|
"-pedantic-errors",
|
|
"-Wall",
|
|
"-Weffc++",
|
|
"-Wextra",
|
|
"-Wconversion",
|
|
"-Wsign-conversion",
|
|
"-Werror",
|
|
"${workspaceFolder}/main.cpp",
|
|
"${workspaceFolder}/mandelbrot.cpp",
|
|
"-o",
|
|
"${workspaceFolder}/main",
|
|
"-lraylib",
|
|
"-lGL",
|
|
"-lm",
|
|
"-lpthread",
|
|
"-ldl",
|
|
"-lrt",
|
|
"-lX11"
|
|
],
|
|
"options": {
|
|
"cwd": "${fileDirname}"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"detail": "Task generated by Debugger."
|
|
}
|
|
],
|
|
"version": "2.0.0"
|
|
}
|