Integrate cmake with vscode

This commit is contained in:
Rafał Grodziński
2025-06-21 17:11:38 +09:00
parent 7a76bb7e33
commit 1da1622b8a
3 changed files with 11 additions and 15 deletions

5
.vscode/launch.json vendored
View File

@@ -5,9 +5,10 @@
"name": "Debug Bits Runner Builder",
"type": "lldb-dap",
"request": "launch",
"program": "${workspaceFolder}/brb",
"program": "${command:cmake.launchTargetPath}",
"args": ["-v", "${workspaceFolder}/test.brc"],
"internalConsoleOptions": "openOnSessionStart"
"cwd": "${workspaceFolder}",
"internalConsoleOptions": "openOnSessionStart",
}
]
}