This commit is contained in:
2026-02-24 13:03:18 +01:00
parent 5fb3c3bf90
commit 25c4594196
18 changed files with 264 additions and 65 deletions

29
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "shell",
"command": "./fb_application_example",
"options": {"cwd": "${workspaceFolder}/build/bin"},
"dependsOn":["build"],
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "build",
"type": "shell",
"command": "make",
"options": {"cwd": "${workspaceFolder}/build"},
"args": ["-j12"],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}