Files
SystemC-Components-Test/.vscode/launch.json
2025-09-05 08:36:02 +02:00

22 lines
785 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": [{
"name": "cci_param_restricted",
"type": "gdb",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/build/Debug/tests/cci_param_restricted/cci_param_restricted",
"preLaunchTask": "CMake: build"
},{
"name": "dmi_access",
"type": "gdb",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/build/Debug/tests/memory_subsys/memory_subsys",
"preLaunchTask": "CMake: build"
}
]
}