22 lines
730 B
JSON
22 lines
730 B
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"
|
|
}
|
|
]
|
|
} |