This repository has been archived on 2023-08-03. You can view files and clone it, but cannot push or open issues or pull requests.
code/.vscode/tasks.json

17 lines
476 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "g++",
"args": ["${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}", "-g3", "-fcompare-debug-second"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}