saqut-compiler/.vscode/tasks.json

17 lines
301 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build saqut",
"type": "shell",
"command": "g++",
"args": ["-g", "-O0", "Parsing.cpp", "-o", "saqut"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"]
}
]
}