keva-stratum/.vscode/launch.json

19 lines
568 B
JSON
Raw Normal View History

2019-03-09 08:24:32 +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": [
{
"name": "Launch",
"type": "go",
"request": "launch",
2019-03-09 08:45:13 +00:00
"mode": "auto",
"program": "${workspaceFolder}",
2020-03-14 22:00:16 +00:00
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/build/cnutil"
},
2019-03-09 08:24:32 +00:00
"args": []
}
]
}