2023-11-27 21:07:23 -07:00
|
|
|
{
|
|
|
|
// 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
|
|
|
|
// Remember to build the specific part of cmake with
|
|
|
|
// mkdir build; cd build
|
|
|
|
// "cmake -DCMAKE_BUILD_TYPE=Debug .. " if you want to be able to debug it.
|
|
|
|
// don't forget to inspect the cmake output for more configuration options
|
|
|
|
"configurations": [
|
|
|
|
{
|
2024-02-19 11:49:34 -07:00
|
|
|
"name": "(lldb) Launch",
|
2023-11-27 21:07:23 -07:00
|
|
|
"type": "cppdbg",
|
|
|
|
"request": "launch",
|
2023-12-05 23:33:03 -07:00
|
|
|
"program": "${workspaceFolder}/build/test_signal",
|
2024-02-19 11:49:34 -07:00
|
|
|
"args": [],
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${fileDirname}",
|
|
|
|
"environment": [],
|
|
|
|
"externalConsole": false,
|
|
|
|
"MIMode": "lldb"
|
2023-11-27 21:07:23 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|