re_lpc_launcher/.vscode/launch.json
2025-06-24 19:21:07 -03:00

25 lines
No EOL
619 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Executar no Windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.exe",
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"preLaunchTask": "build"
},
{
"name": "Executar no Linux/macOS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"stopAtEntry": false,
"console": "externalTerminal",
"preLaunchTask": "build"
}
]
}