RetroQUEST/gdlibretro/.vscode/launch.json

35 lines
1.3 KiB
JSON
Raw Normal View History

{
// 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": "D:/SteamLibrary/steamapps/common/Godot Engine/godot.windows.opt.tools.64.exe",
"args": ["--path", "${workspaceFolder}/demo" ],
"cwd": "${workspaceFolder}",
"preLaunchTask": "CMake: Install",
"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"
}
]
}