mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-16 07:55:58 +00:00
* Fix BinDisc quantile mistakes * Fix FImdlp tests * Fix tests, samples and remove uneeded support files * Add coypright header to sources Fix coverage report Add coverage badge to README * Update sonar github action * Move sources to a folder and change ArffFiles files to library * Add recursive submodules to github action
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
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": [
|
|
{
|
|
"name": "C++ Launch config",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/tests/build/BinDisc_unittest",
|
|
"cwd": "${workspaceFolder}/tests/build",
|
|
"args": [],
|
|
"launchCompleteCommand": "exec-run",
|
|
"stopAtEntry": false,
|
|
"linux": {
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "/usr/bin/gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
},
|
|
{
|
|
"description": "Auto load symbols when loading an .so file",
|
|
"text": "set auto-solib-add",
|
|
"ignoreFailures": false
|
|
}
|
|
]
|
|
},
|
|
"osx": {
|
|
"type": "lldb",
|
|
"MIMode": "lldb"
|
|
},
|
|
"windows": {
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "C:\\MinGw\\bin\\gdb.exe"
|
|
}
|
|
},
|
|
]
|
|
} |