29 lines
No EOL
977 B
JSON
29 lines
No EOL
977 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": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug: connect",
|
|
"program": "${workspaceFolder}/build/examples/output/connect",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "GCC: Build"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug: tests",
|
|
"program": "${workspaceFolder}/build/larra_xmpp_tests",
|
|
"args": [
|
|
// --gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
|
|
"--gtest_filter=Roster*"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "GCC: Build"
|
|
}
|
|
]
|
|
} |