40 lines
1.4 KiB
JSON
40 lines
1.4 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder:workspace}",
|
|
"name": "Debug IoT-Simulator",
|
|
"program": "${workspaceFolder:workspace}/.build/debug/IoT-Simulator",
|
|
"preLaunchTask": "swift: Build Debug IoT-Simulator"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder:workspace}",
|
|
"name": "Release IoT-Simulator",
|
|
"program": "${workspaceFolder:workspace}/.build/release/IoT-Simulator",
|
|
"preLaunchTask": "swift: Build Release IoT-Simulator"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder:workspace}",
|
|
"name": "Debug App",
|
|
"program": "${workspaceFolder:workspace}/.build/debug/App",
|
|
"preLaunchTask": "swift: Build Debug App"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder:workspace}",
|
|
"name": "Release App",
|
|
"program": "${workspaceFolder:workspace}/.build/release/App",
|
|
"preLaunchTask": "swift: Build Release App"
|
|
}
|
|
]
|
|
} |