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

30
.vscode/tasks.json vendored
View File

@@ -2,19 +2,39 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "Compile", "label": "Generate Build Files",
"type": "shell", "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", "label": "Run",
"type": "shell", "type": "shell",
"command": "./build/evk",
"windows": {
"command": "build/evk.exe" "command": "build/evk.exe"
}, },
"presentation": {
"reveal": "always"
}
},
{ {
"label": "Test", "label": "Build & Run",
"type": "shell", "dependsOn": ["Build", "Run"],
"command": "echo \"Hi Bye\"" "dependsOrder": "sequence",
} }
] ]
} }