dotfiles/.config/Code/User/History/5285016e/0bBA.json

38 lines
1,004 B
JSON
Raw Normal View History

2024-06-16 18:53:25 +05:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build and run game",
"type": "shell",
"command": "make clean && make && ./game",
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
]
}