Skip to content

Commit

Permalink
Updated launchers
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrw committed Oct 13, 2023
1 parent 4fc145f commit 1b676a2
Showing 1 changed file with 39 additions and 3 deletions.
42 changes: 39 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "lldb",
"request": "launch",
"name": "Build and Debug Enu",
"name": "Client: Build and Debug",
"program": "${workspaceFolder}/vendor/godot/bin/godot.osx.opt.tools.arm64",
"windows": {
"program": "${workspaceFolder}/vendor/godot/bin/godot.windows.opt.tools.64"
Expand All @@ -19,12 +20,30 @@
"presentation": {
"clear": true // <-- this line
},
"console": "internalConsole"
"terminal": "external"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug Enu",
"name": "Host: Build and Debug",
"program": "${workspaceFolder}/vendor/godot/bin/godot.osx.opt.tools.arm64",
"env": {"ENU_LISTEN_ADDRESS": "0.0.0.0"},
"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
},
"terminal": "external"
},
{
"type": "lldb",
"request": "launch",
"name": "Client: Debug",
"program": "${workspaceFolder}/vendor/godot/bin/godot.osx.opt.tools.arm64",
"windows": {
"program": "${workspaceFolder}/vendor/godot/bin/godot.windows.opt.tools.64"
Expand All @@ -36,6 +55,23 @@
"clear": true // <-- this line
}
},
{
"type": "lldb",
"request": "launch",
"name": "Host: Debug",
"program": "${workspaceFolder}/vendor/godot/bin/godot.osx.opt.tools.arm64",
"env": {"ENU_LISTEN_ADDRESS": "0.0.0.0"},
"windows": {
"program": "${workspaceFolder}/vendor/godot/bin/godot.windows.opt.tools.64"
},
"args": [],
"cwd": "${workspaceFolder}/app",
"initCommands": ["command source ${workspaceRoot}/.lldbinit"],
"presentation": {
"clear": true // <-- this line
},
"terminal": "external"
},
{
"type": "lldb",
"request": "launch",
Expand Down

0 comments on commit 1b676a2

Please sign in to comment.