Files
NASM/.vscode/launch.json
2025-09-16 00:48:22 +03:00

30 lines
1007 B
JSON

{
"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, но её ещё нет
},
]
}