diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-17 16:12:07 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-17 16:12:07 -0400 |
| commit | 26ca0cd4b5c4878dbd8173f5d410c5ac780d0ccc (patch) | |
| tree | 08be00ec317df5907cc2654a0d2e317424514c97 /.vscode/tasks.json | |
| parent | c6bd52facddefd0b5e9955306472ed1a5c621f6c (diff) | |
Update dtk-template, switch from intellisense to clangd
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..6dc12130 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,16 @@ +{ + // Use Ctrl+Shift+B to run build tasks. + // Or "Run Build Task" in the Command Palette. + "version": "2.0.0", + "tasks": [ + { + "label": "ninja", + "type": "shell", + "command": "ninja", + "group": { + "kind": "build", + "isDefault": true + } + }, + ] +} |
