IoT-Simulator/.vscode/launch.json
Christian Risi 5d78c9be58 V0.6.1 Arroyo Toad
Pushing Private Keys (Obviously these are test only)
2024-12-11 21:08:38 +00:00

41 lines
1.4 KiB
JSON

{
"configurations": [
{
"type": "lldb",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder}",
"name": "Debug IoT-Simulator",
"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"
},
{
"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"
}
]
}