added favicon

This commit is contained in:
2026-02-17 17:48:37 +01:00
parent 58d37b51b7
commit d758bbd62c
17 changed files with 56 additions and 55 deletions

12
.vscode/tasks.json vendored
View File

@@ -4,7 +4,7 @@
{
"label": "build",
"type": "shell",
"command": "cmake -S . -B build && cmake --build build",
"command": "cmake -S . -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON && cmake --build build && cp build/compile_commands.json compile_commands.json",
"group": "build",
"problemMatcher": [
"$gcc"
@@ -13,7 +13,7 @@
{
"label": "build release",
"type": "shell",
"command": "cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build",
"command": "cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON && cmake --build build && cp build/compile_commands.json compile_commands.json ",
"group": "build",
"problemMatcher": [
"$gcc"
@@ -26,6 +26,12 @@
"options": {
"cwd": "frontend"
}
}
},
{
"label": "clean",
"type": "shell",
"command": "rm -rf build/*",
"group": "build",
},
]
}