IoT-Simulator/.vscode/launch.json

23 lines
788 B
JSON
Raw Normal View History

{
"configurations": [
{
"type": "lldb",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder}",
2024-12-08 20:38:43 +00:00
"name": "Debug IoT-Simulator",
2024-12-16 10:40:45 +00:00
"envFile": "${workspaceFolder}/env/debug/.debug.env",
"program": "${workspaceFolder}/.build/debug/App",
"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"
}
]
}