Major changes

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2025-07-02 12:26:20 +03:00
parent 4ec57bbd79
commit dd0d232c97
32 changed files with 997 additions and 182 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "c",
"stdio": [
"input.txt",
null
],
"preLaunchTask": "Compile",
"expressions": "native",
"program": "${workspaceFolder}/build/evk.exe"
}
]
}

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

@@ -0,0 +1,20 @@
{
"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\""
}
]
}