enu/.vscode/launch.json

39 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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug Enu",
"program": "${workspaceFolder}/vendor/godot/bin/godot.osx.opt.tools.arm64",
"windows": {
"program": "${workspaceFolder}/vendor/godot/bin/godot.windows.opt.tools.64"
},
"args": [],
"cwd": "${workspaceFolder}/app",
"preLaunchTask": "Build enu",
"initCommands": ["command source ${workspaceRoot}/.lldbinit"],
"presentation": {
"clear": true // <-- this line
}
},
{
"type": "lldb",
"request": "launch",
"name": "Debug Current file",
"program": "${relativeFileDirname}/${fileBasenameNoExtension}",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "Build Current File",
"initCommands": ["command source ${workspaceRoot}/.lldbinit"],
"presentation": {
"clear": true // <-- this line
}
}
]
}