Подготовлено рабочее пространство

This commit is contained in:
Пытков Роман
2025-09-16 00:48:22 +03:00
parent c155f98534
commit 95e5aab32d
5 changed files with 107 additions and 11 deletions

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

@@ -0,0 +1,30 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "<file>: lldb debug x64",
"program": "${fileDirname}/build/${fileBasenameNoExtension}",
"cwd": "${fileDirname}/build",
"preLaunchTask": "asm64"
},
{
"type": "lldb",
"request": "launch",
"name": "<file>: lldb+GCC debug x64",
"program": "${fileDirname}/build/${fileBasenameNoExtension}",
"cwd": "${fileDirname}/build",
"preLaunchTask": "asm64+gcc"
},
{
"type": "lldb",
"request": "launch",
"name": "minimal: lldb debug x64",
"program": "${workspaceFolder}/minimal/build/minimal",
"cwd": "${workspaceFolder}/minimal/build"
// TODO тут требуется ещё указать задачу сборки minimal, но её ещё нет
},
]
}