diff options
| author | Jan Tuomi <jan.tuomi@eficode.com> | 2018-12-11 20:03:08 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@eficode.com> | 2018-12-11 20:03:08 +0200 |
| commit | b51f919881491d6f9c7fb7e5fee70de9cbaa0fbb (patch) | |
| tree | 81c394cb2cfe3ec21e99fa63d5be926b7ce7303e /day11/.vscode/launch.json | |
| parent | 49230f87d81c21f11c6d227109b7b9eaee52608f (diff) | |
Solve day11
Diffstat (limited to 'day11/.vscode/launch.json')
| -rw-r--r-- | day11/.vscode/launch.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/day11/.vscode/launch.json b/day11/.vscode/launch.json new file mode 100644 index 0000000..9966abf --- /dev/null +++ b/day11/.vscode/launch.json @@ -0,0 +1,43 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug executable 'day11'", + "cargo": { + "args": [ + "build", + "--bin=day11", + "--package=day11" + ], + "filter": { + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day11'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day11", + "--package=day11" + ], + "filter": { + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +}
\ No newline at end of file |
