chore: added build task for vscode

This commit is contained in:
maelstrom 2025-10-10 21:37:09 +02:00
parent 1a1db6926d
commit 51546c320c
2 changed files with 12 additions and 0 deletions

1
.vscode/launch.json vendored
View file

@ -18,6 +18,7 @@
"program": "${workspaceFolder}/build/bin/editor",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "buildDebug"
},
{
"type": "lldb",

11
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "buildDebug",
"type": "process",
"command": "cmake",
"args": ["--build", "build", "-j16"]
}
]
}