From 8005d57158ecd79d46af70142b88c367df3f0bc7 Mon Sep 17 00:00:00 2001
From: Kjell Hedstrom <Kjell.Hedstrom@Gmail.com>
Date: Mon, 19 Feb 2024 12:02:38 -0700
Subject: [PATCH] fixed launch for debug

---
 .vscode/launch.json | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 .vscode/launch.json

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..5f1b089
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,23 @@
+{
+  // 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
+  // Remember to build the specific part of cmake with 
+  // mkdir build; cd build
+  // "cmake -DCMAKE_BUILD_TYPE=Debug .. " if you want to be able to debug it. 
+  // don't forget to inspect the cmake output for more configuration options
+  "configurations": [
+      {
+          "name": "(lldb) Launch",
+          "type": "cppdbg",
+          "request": "launch",
+          "program": "${workspaceFolder}/build/UnitTestRunner",
+          "args": [],
+          "stopAtEntry": false,
+          "cwd": "${fileDirname}",
+          "environment": [],
+          "externalConsole": false,
+          "MIMode": "lldb"
+      }
+  ]
+}
\ No newline at end of file