Skip to content

Commit

Permalink
Add debugger launch definition for VS Code
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Helwer <[email protected]>
  • Loading branch information
ahelwer committed Jul 27, 2024
1 parent 2233540 commit 6f39ea4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "TLAPM Debug",
"type": "ocaml.earlybird",
"request": "launch",
"program": "${workspaceFolder}/src/tlapm.bc",
"stopOnEntry": true,
"env": {
"CAML_LD_LIBRARY_PATH": "${workspaceFolder}/_build/default/src:${env:CAML_LD_LIBRARY_PATH}"
}
}
]
}

0 comments on commit 6f39ea4

Please sign in to comment.