Advertisement
sidjha57

launch.js

Aug 13th, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.49 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": "Python: Current File",
  9.             "type": "python",
  10.             "request": "launch",
  11.             "stopOnEntry": true,
  12.             "program": "${file}",
  13.             "cwd": "${workspaceFolder}",
  14.             "env": {},
  15.             "envFile": "${workspaceFolder}/.env",
  16.             "console": "integratedTerminal"
  17.         },
  18.         {
  19.             "name": "c++ debugger",
  20.             "type": "cppdbg",
  21.             "request": "launch",
  22.             "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
  23.             "args": [],
  24.             "stopAtEntry": false,
  25.             "cwd": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin",
  26.             "environment": [],
  27.             "externalConsole": false,
  28.             "MIMode": "gdb",
  29.             "miDebuggerPath": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\gdb.exe",
  30.             "setupCommands": [
  31.                 {
  32.                     "description": "Enable pretty-printing for gdb",
  33.                     "text": "-enable-pretty-printing",
  34.                     "ignoreFailures": true
  35.                 }
  36.             ],
  37.             "preLaunchTask": "${defaultBuildTask}"
  38.         }
  39.     ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement