Skip to content

Commit

Permalink
Add launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mono0926 committed Nov 9, 2023
1 parent ae2e59f commit 66e3bf4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 66e3bf4

Please sign in to comment.