lwip/.vscode/launch.json

63 lines
2.3 KiB
JSON
Raw Normal View History

2018-10-02 18:50:37 +00: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
"version": "0.2.0",
"configurations": [
{
2018-10-27 20:35:54 +00:00
"name": "(gdb) Launch example_app",
2018-10-02 18:50:37 +00:00
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": true,
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
2018-10-22 17:48:01 +00:00
"preLaunchTask": "Build example_app",
2018-10-02 18:50:37 +00:00
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"linux": {
"cwd": "${workspaceFolder}/build/contrib/ports/unix/example_app",
"program": "${workspaceFolder}/build/contrib/ports/unix/example_app/example_app",
2018-10-02 18:50:37 +00:00
},
"windows": {
"cwd": "${workspaceFolder}/build/contrib/ports/win32/example_app",
"program": "${workspaceFolder}/build/contrib/ports/win32/example_app/example_app",
2022-03-25 20:29:31 +00:00
"miDebuggerPath": "gdb.exe",
2018-10-02 18:50:37 +00:00
}
2018-10-27 20:35:54 +00:00
},
{
"name": "(gdb) Launch unit tests",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": true,
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "Build unit tests",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"linux": {
"cwd": "${workspaceFolder}/contrib/ports/unix/check/build",
"program": "${workspaceFolder}/contrib/ports/unix/check/build/lwip_unittests",
},
"windows": {
"cwd": "${workspaceFolder}/contrib/ports/win32/check/build",
"program": "${workspaceFolder}/contrib/ports/win32/check/build/lwip_unittests",
2022-03-25 20:29:31 +00:00
"miDebuggerPath": "gdb.exe",
2018-10-27 20:35:54 +00:00
}
2018-10-02 18:50:37 +00:00
}
]
}