Пустое окно

This commit is contained in:
2025-12-06 17:21:56 +03:00
commit 74ead297d5
7 changed files with 234 additions and 0 deletions

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

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Zig: Debug (lldb)",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-out/bin/Zivro",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "zig: build"
},
]
}

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

@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "zig: build",
"type": "shell",
"command": "zig build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"],
"presentation": {
"reveal": "always",
"panel": "shared",
"showReuseMessage": true
}
}
]
}