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