{ // 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": "Launch lldb", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/posix_demo", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, "MIMode": "lldb", "preLaunchTask": "${defaultBuildTask}" }, { "name": "Launch GDB Ubuntu WSL", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/posix_demo", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, "MIMode": "gdb", "preLaunchTask": "${defaultBuildTask}" }, { "name": "Launch GDB Cygwin", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/posix_demo", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "preLaunchTask": "${defaultBuildTask}" }, { "name": "Launch GDB MSYS2", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/posix_demo", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "preLaunchTask": "${defaultBuildTask}" } ] }