-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.tasks.json
62 lines (62 loc) · 1.72 KB
/
example.tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "~/srslte-docker/scripts/build.sh",
"type": "shell",
"args": [
"--container=srslte-app",
" --service=srslte",
"--root=${workspaceFolder}",
"--config-path-host=~/dev/srsLTE/srslte-config",
"--config-path-cont=/root/.config/srslte",
"--image=igorskh/srslte-app",
"--gui=false"
],
"problemMatcher": [
"$gcc"
]
},
{
"label": "run eNB",
"command": "~/srslte-docker/scripts/run.sh",
"type": "shell",
"args": [
"--container=srslte-app",
"--app=srsenb",
"--service=srslte",
"--root=build/srsenb/src"
],
"problemMatcher": [
]
},
{
"label": "run EPC",
"command": "~/srslte-docker/scripts/run.sh",
"type": "shell",
"args": [
"--container=srslte-app",
"--app=srsepc",
"--service=srslte",
"--root=build/srsepc/src"
],
"problemMatcher": [
]
},
{
"label": "run UE",
"command": "~/srslte-docker/scripts/run.sh",
"type": "shell",
"args": [
"--container=srslte-app",
"--app=srsue",
"--service=srslte",
"--root=build/srsue/src"
],
"problemMatcher": [
]
}
],
"reveal": "always"
}