Files
steam-audio-godot/.vscode/launch.json
2025-05-07 03:46:10 -06:00

35 lines
1.2 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Windows Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.buildDirectory}/bin",
"preLaunchTask": "CMake: build",
"internalConsoleOptions": "openOnSessionStart",
"console": "internalConsole",
"environment": [
{
"name": "Path",
"value": "${env:Path};"
}
],
"visualizerFile": "${workspaceFolder}/.vscode/godot.natvis"
},
{
"name": "macOS/Linux Launch",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${command:cmake.buildDirectory}/bin",
"visualizerFile": "${workspaceFolder}/.vscode/godot.natvis"
}
]
}