mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-05 22:09:52 +01:00
38 lines
925 B
JSON
38 lines
925 B
JSON
{
|
|
// 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": [
|
|
{
|
|
"type": "cppdbg",
|
|
"preLaunchTask": "build",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/build/unittest",
|
|
"name": "unittest (C/C++ extension)",
|
|
"cwd": "${workspaceRoot}/build",
|
|
"setupCommands": [
|
|
{
|
|
"text": "-enable-pretty-printing",
|
|
"description": "enable pretty printing",
|
|
"ignoreFailures": true
|
|
},
|
|
]
|
|
},
|
|
{
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"name": "unittest (CodeLLDB extension)",
|
|
"target": "./build/unittest",
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"name": "unittest (Native Debug extension)",
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"target": "./build/unittest",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
]
|
|
}
|