launch configurations update

This commit is contained in:
VaclavT 2021-02-23 21:20:33 +01:00
parent 343d4f8715
commit c67501e523
1 changed files with 14 additions and 2 deletions

16
.vscode/launch.json vendored
View File

@ -5,11 +5,23 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "(lldb) Launch", "name": "ml",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/build/ml", "program": "${workspaceFolder}/build/ml",
"args": ["-f", "${workspaceFolder}/debug.lisp"], "args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal",
"MIMode": "lldb"
},
{
"name": "ml -f debug.lsp",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/ml",
"args": ["-f", "${workspaceFolder}/debug.lsp"],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"environment": [], "environment": [],