Updated .vscode/tasks.json

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2025-07-07 11:28:04 +03:00
parent 7ae6de6e45
commit 0523a08608

32
.vscode/tasks.json vendored
View File

@@ -2,19 +2,39 @@
"version": "2.0.0",
"tasks": [
{
"label": "Compile",
"label": "Generate Build Files",
"type": "shell",
"command": "meson compile -C build"
"command": "meson setup --native-file=build_options/meson-clang-linux --wipe build",
"windows": {
"command": "meson setup --native-file=build_options/meson-clang-win --wipe build"
},
"presentation": {
"reveal": "silent"
}
},
{
"label": "Build",
"type": "shell",
"command": "meson compile -C build",
"presentation": {
"reveal": "silent"
}
},
{
"label": "Run",
"type": "shell",
"command": "build/evk.exe"
"command": "./build/evk",
"windows": {
"command": "build/evk.exe"
},
"presentation": {
"reveal": "always"
}
},
{
"label": "Test",
"type": "shell",
"command": "echo \"Hi Bye\""
"label": "Build & Run",
"dependsOn": ["Build", "Run"],
"dependsOrder": "sequence",
}
]
}