SchrodingersChess/.vscode/tasks.json

30 lines
729 B
JSON
Raw Normal View History

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build project",
"command": "/usr/bin/g++",
"args": [
"*.cpp",
"-std=c++1z",
"-fdiagnostics-color=always",
"-g",
"-lSDL2",
"-o",
"./chess"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}