EtherGuard-VPN/.vscode/launch.json

18 lines
648 B
JSON
Raw Normal View History

2021-08-16 20:58:15 +02: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 Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
2021-11-28 12:39:40 +01:00
"buildFlags": "-tags 'novpp'",
2021-08-24 10:43:55 +02:00
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
"args":["-config","example_config/super_mode/s1.yaml","-mode","super"/*,"-example"*/],
2021-08-16 20:58:15 +02:00
}
]
}