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