This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
MPortLink/.vscode/launch.json

16 lines
355 B
JSON
Raw Normal View History

2023-12-20 21:18:00 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "mportlink launch",
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/mportlink",
"args": [
],
"cwd": "${workspaceFolder}"
}
]
}