diff options
| author | Jan Tuomi <jan.tuomi@eficode.com> | 2018-12-10 18:32:09 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@eficode.com> | 2018-12-10 18:32:09 +0200 |
| commit | 49230f87d81c21f11c6d227109b7b9eaee52608f (patch) | |
| tree | b10589341472bcab4d428943878733d70bdebf4e /day10/.vscode/launch.json | |
| parent | b8e9c88da10835a32c82891c93023eb6eda952ed (diff) | |
Solve day10
Diffstat (limited to 'day10/.vscode/launch.json')
| -rw-r--r-- | day10/.vscode/launch.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/day10/.vscode/launch.json b/day10/.vscode/launch.json new file mode 100644 index 0000000..0e96ed8 --- /dev/null +++ b/day10/.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 'day10'", + "cargo": { + "args": [ + "build", + "--bin=day10", + "--package=day10" + ], + "filter": { + "kind": "bin" + } + }, + "args": ["input.txt"], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'day10'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=day10", + "--package=day10" + ], + "filter": { + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +}
\ No newline at end of file |
