summaryrefslogtreecommitdiffstats
path: root/day7/.vscode/launch.json
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@eficode.com>2018-12-08 18:17:25 +0200
committerJan Tuomi <jan.tuomi@eficode.com>2018-12-08 18:17:25 +0200
commite415080d2c87d398340aeca9a76bdc7e83e99734 (patch)
tree0281d829c4deb82a5ea36dc98f57e7798175edef /day7/.vscode/launch.json
parent2a0f5d3f3d28235abe87898597f8fb89b9668885 (diff)
Solve day7
Diffstat (limited to 'day7/.vscode/launch.json')
-rw-r--r--day7/.vscode/launch.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/day7/.vscode/launch.json b/day7/.vscode/launch.json
new file mode 100644
index 0000000..1d370e8
--- /dev/null
+++ b/day7/.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 'day7'",
+ "cargo": {
+ "args": [
+ "build",
+ "--bin=day7",
+ "--package=day7"
+ ],
+ "filter": {
+ "kind": "bin"
+ }
+ },
+ "args": ["input_ex.txt"],
+ "cwd": "${workspaceFolder}"
+ },
+ {
+ "type": "lldb",
+ "request": "launch",
+ "name": "Debug unit tests in executable 'day7'",
+ "cargo": {
+ "args": [
+ "test",
+ "--no-run",
+ "--bin=day7",
+ "--package=day7"
+ ],
+ "filter": {
+ "kind": "bin"
+ }
+ },
+ "args": [],
+ "cwd": "${workspaceFolder}"
+ }
+ ]
+} \ No newline at end of file