diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-11 14:46:28 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-11 14:46:28 +0100 |
commit | 7af405bd91e110afae90ce5ccb2249231b4c9d31 (patch) | |
tree | 8fa1621caba4ecfd781237ce47074039acc464e1 | |
parent | f120065b7f202fab2166085970ad91915ca930ff (diff) |
vscode debug!
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 20cd69a..dfa5895 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,6 +14,14 @@ "cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true
+ },
+ {
+ "name": "(OSX) Launch",
+ "type": "lldb",
+ "request": "launch",
+ "program": "${workspaceRoot}/target/debug/roguelike",
+ "args": [],
+ "cwd": "${workspaceRoot}",
}
]
}
\ No newline at end of file |