Files
bits-runner-builder/.vscode/launch.json
Rafał Grodziński 870ecce8e4 Almost hello world
2025-07-08 22:49:04 +09:00

14 lines
420 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Bits Runner Builder",
"type": "lldb-dap",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": ["-v", "${workspaceFolder}/samples/hello.brc"],
"cwd": "${workspaceFolder}",
"internalConsoleOptions": "openOnSessionStart",
}
]
}