mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-11-25 16:53:19 +01:00
38 lines
1.4 KiB
JSON
38 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": "Launch Super",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"buildFlags": "-tags 'novpp'",
|
|
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
|
|
"args":["-config","example_config/super_mode/EgNet_super.yaml","-mode","super"/*,"-example"*/],
|
|
},
|
|
{
|
|
"name": "Launch Edge",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"buildFlags": "-tags 'novpp'",
|
|
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
|
|
"args":["-config","example_config/super_mode/EgNet_edge001.yaml","-mode","edge"/*,"-example"*/],
|
|
},
|
|
{
|
|
"name": "Launch GenCfg",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"buildFlags": "-tags 'novpp'",
|
|
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
|
|
"args":["-config","example_config/super_mode/gensuper.yaml","-mode","gencfg","-cfgmode","super"/*,"-example"*/],
|
|
}
|
|
]
|
|
} |