From 66e3bf41f279e0c03ac9f88ebad67086974082d7 Mon Sep 17 00:00:00 2001 From: mono Date: Thu, 9 Nov 2023 17:31:29 +0900 Subject: [PATCH] Add launch.json --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..ff3d9d96 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "configurations": [ + { + "type": "lldb", + "request": "launch", + "sourceLanguages": [ + "swift" + ], + "args": [], + "cwd": "${workspaceFolder:LicensePlist}", + "name": "Debug license-plist", + "program": "${workspaceFolder:LicensePlist}/.build/debug/license-plist", + "preLaunchTask": "swift: Build Debug license-plist" + }, + { + "type": "lldb", + "request": "launch", + "sourceLanguages": [ + "swift" + ], + "args": [], + "cwd": "${workspaceFolder:LicensePlist}", + "name": "Release license-plist", + "program": "${workspaceFolder:LicensePlist}/.build/release/license-plist", + "preLaunchTask": "swift: Build Release license-plist" + } + ] +}