| { |
| "version": "0.2.0", |
| "configurations": [ |
| |
| { |
| "name": "SubzeroTest", |
| "type": "cppdbg", |
| "request": "launch", |
| "program": "${workspaceRoot}/build/SubzeroTest", |
| "args": [], |
| "stopAtEntry": false, |
| "cwd": "${workspaceRoot}", |
| "environment": [], |
| "externalConsole": true, |
| "linux": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| }, |
| "osx": { |
| "MIMode": "lldb" |
| }, |
| "windows": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| } |
| }, |
| { |
| "name": "OGLES2HelloAPI", |
| "type": "cppdbg", |
| "request": "launch", |
| "program": "${workspaceRoot}/build/OGLES2HelloAPI", |
| "args": [], |
| "stopAtEntry": false, |
| "cwd": "${workspaceRoot}", |
| "environment": [], |
| "externalConsole": true, |
| "linux": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| }, |
| "osx": { |
| "MIMode": "lldb" |
| }, |
| "windows": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| } |
| }, |
| { |
| "name": "C++ Attach", |
| "type": "cppdbg", |
| "request": "attach", |
| "program": "enter program name, for example ${workspaceRoot}/a.out", |
| "processId": "${command:pickProcess}", |
| "linux": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| }, |
| "osx": { |
| "MIMode": "lldb" |
| }, |
| "windows": { |
| "MIMode": "gdb", |
| "setupCommands": [ |
| { |
| "description": "Enable pretty-printing for gdb", |
| "text": "-enable-pretty-printing", |
| "ignoreFailures": true |
| } |
| ] |
| } |
| } |
| ] |
| } |