Окружение стало сильно удобнее, lldb заработал

This commit is contained in:
Пытков Роман
2025-09-20 20:17:31 +03:00
parent 13cbb905ec
commit 98877d6100
4 changed files with 41 additions and 1 deletions

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

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "lldb",
"request": "launch",
// Resolved by CMake Tools:
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"PATH": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
}
]
}