25 lines
758 B
JSON
25 lines
758 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug autosample (macOS)",
|
|
"type": "lldb-dap",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build_debug/autosample.app/Contents/MacOS/autosample",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "build-debug"
|
|
},
|
|
{
|
|
"name": "Debug autosample (Windows)",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build_debug/autosample.exe",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"preLaunchTask": "build-debug"
|
|
}
|
|
]
|
|
}
|