Advertisement
Mux213

godot-cpp vscode launch.json

Aug 21st, 2021
1,913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.15 KB | None | 0 0
  1. {
  2.     // Use IntelliSense to learn about possible attributes.
  3.     // Hover to view descriptions of existing attributes.
  4.     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5.     "version": "0.2.0",
  6.     "configurations": [
  7.         {
  8.             "name": "Test in Editor",
  9.             "type": "cppvsdbg",
  10.             "request": "launch",
  11.             "program": "D:/Development/godot4-git/bin/godot.windows.tools.64.exe",
  12.             "args": [
  13.                 "-e",
  14.             ],
  15.             "stopAtEntry": false,
  16.             "cwd": "${workspaceFolder}/test/demo",
  17.             "environment": [],
  18.             "console": "integratedTerminal",
  19.             "preLaunchTask": "build test debug"
  20.         },
  21.         {
  22.             "name": "Test runtime",
  23.             "type": "cppvsdbg",
  24.             "request": "launch",
  25.             "program": "D:/Development/godot4-git/bin/godot.windows.tools.64.exe",
  26.             "stopAtEntry": false,
  27.             "cwd": "${workspaceFolder}/test/demo",
  28.             "environment": [],
  29.             "console": "integratedTerminal",
  30.             "preLaunchTask": "build test debug"
  31.         },
  32.     ]
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement