about summary refs log tree commit diff stats
path: root/swift/life/.vscode/launch.json
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-20 18:38:11 -0400
committerelioat <elioat@tilde.institute>2024-06-20 18:38:11 -0400
commit9c96e8380f4206c318e5d277cad11909fc7868cc (patch)
treee8cec5789607ae0491f72e7a62d91474b07ef790 /swift/life/.vscode/launch.json
parent05a1adcbedb43920074c1854338d6ffc635093f8 (diff)
downloadtour-9c96e8380f4206c318e5d277cad11909fc7868cc.tar.gz
*
Diffstat (limited to 'swift/life/.vscode/launch.json')
-rw-r--r--swift/life/.vscode/launch.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/swift/life/.vscode/launch.json b/swift/life/.vscode/launch.json
new file mode 100644
index 0000000..9d0e87c
--- /dev/null
+++ b/swift/life/.vscode/launch.json
@@ -0,0 +1,28 @@
+{
+    "configurations": [
+        {
+            "type": "lldb",
+            "request": "launch",
+            "sourceLanguages": [
+                "swift"
+            ],
+            "args": [],
+            "cwd": "${workspaceFolder:life}",
+            "name": "Debug life",
+            "program": "${workspaceFolder:life}/.build/debug/life",
+            "preLaunchTask": "swift: Build Debug life"
+        },
+        {
+            "type": "lldb",
+            "request": "launch",
+            "sourceLanguages": [
+                "swift"
+            ],
+            "args": [],
+            "cwd": "${workspaceFolder:life}",
+            "name": "Release life",
+            "program": "${workspaceFolder:life}/.build/release/life",
+            "preLaunchTask": "swift: Build Release life"
+        }
+    ]
+}
\ No newline at end of file