You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.2 KiB
104 lines
3.2 KiB
{ |
|
"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 |
|
} |
|
] |
|
} |
|
} |
|
] |
|
} |