16 lines
434 B
JSON
16 lines
434 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Generate compile_commands.json",
|
|
"type": "process",
|
|
"command": "python",
|
|
"args": [
|
|
"${workspaceRoot}/.vscode/generate_compdb.py"
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |