2024-12-08 20:38:43 +00:00
|
|
|
{
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"type": "lldb",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"args": [],
|
|
|
|
|
"cwd": "${workspaceFolder:workspace}",
|
|
|
|
|
"name": "Debug IoT-Simulator",
|
2024-12-11 17:31:26 +01:00
|
|
|
"envFile": "${workspaceFolder:workspace}/env/debug/debug.env",
|
|
|
|
|
"program": "${workspaceFolder:workspace}/.build/debug/App",
|
2024-12-08 20:38:43 +00:00
|
|
|
"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"
|
|
|
|
|
}
|
|
|
|
|
]
|
2024-11-12 11:33:37 +00:00
|
|
|
}
|