Инициализация проекта

This commit is contained in:
Alexander Zhirov 2026-01-04 14:17:53 +03:00
commit f0349cd899
Signed by: alexander
GPG key ID: C8D8BE544A27C511
11 changed files with 111 additions and 0 deletions

19
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "dub: build example (debug)",
"type": "shell",
"command": "dub",
"args": [
"build",
":example",
"--build=debug"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}