chore: added build task for vscode
This commit is contained in:
parent
1a1db6926d
commit
51546c320c
2 changed files with 12 additions and 0 deletions
1
.vscode/launch.json
vendored
1
.vscode/launch.json
vendored
|
|
@ -18,6 +18,7 @@
|
||||||
"program": "${workspaceFolder}/build/bin/editor",
|
"program": "${workspaceFolder}/build/bin/editor",
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
|
"preLaunchTask": "buildDebug"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "lldb",
|
"type": "lldb",
|
||||||
|
|
|
||||||
11
.vscode/tasks.json
vendored
Normal file
11
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "buildDebug",
|
||||||
|
"type": "process",
|
||||||
|
"command": "cmake",
|
||||||
|
"args": ["--build", "build", "-j16"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue