Files
evk/.vscode/tasks.json
2025-07-02 12:37:15 +03:00

21 lines
415 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Compile",
"type": "shell",
"command": "meson compile -C build"
},
{
"label": "Run",
"type": "shell",
"command": "build/evk.exe"
},
{
"label": "Test",
"type": "shell",
"command": "echo \"Hi Bye\""
}
]
}