Skip to content

Commit

Permalink
this
Browse files Browse the repository at this point in the history
  • Loading branch information
bronifty committed Oct 14, 2024
1 parent bc13324 commit 3c93f50
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/vscode/_meta.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["container", "lldb", "launch.json"]
["container", "lldb", "launch.json", "tasks.json"]
21 changes: 21 additions & 0 deletions docs/reference/vscode/tasks.json.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
- referenced by lldb as its build task

```json
{
"version": "2.0.0",
"tasks": [
{
"label": "clang++",
"type": "shell",
"command": "/usr/bin/clang++",
"args": [
"-std=c++17",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
]
}
]
}
```

0 comments on commit 3c93f50

Please sign in to comment.