40 lines
1.4 KiB
JSON
40 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": "Debug test_stack",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/test_stack.exe",
|
|
"cwd": "${workspaceFolder}",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "C:/ProgramData/mingw64/mingw64/bin/gdb.exe",
|
|
"preLaunchTask": "Build via Makefile"
|
|
},
|
|
{
|
|
"name": "Debug test_numbers",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/test_numbers.exe",
|
|
"cwd": "${workspaceFolder}",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "C:/ProgramData/mingw64/mingw64/bin/gdb.exe",
|
|
"preLaunchTask": "Build via Makefile"
|
|
},
|
|
{
|
|
"name": "Debug test_bintree",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/test_bintree.exe",
|
|
"cwd": "${workspaceFolder}",
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "C:/ProgramData/mingw64/mingw64/bin/gdb.exe",
|
|
"preLaunchTask": "Build via Makefile"
|
|
}
|
|
|
|
|
|
]
|
|
} |