mirror of
https://github.com/RetroDECK/RetroQUEST.git
synced 2025-04-21 01:24:06 +00:00
35 lines
1.3 KiB
JSON
35 lines
1.3 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": "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"
|
||
|
}
|
||
|
]
|
||
|
}
|