-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtasks.json
More file actions
43 lines (42 loc) · 1 KB
/
tasks.json
File metadata and controls
43 lines (42 loc) · 1 KB
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
{
"version": "2.0.0",
"tasks": [
{
"label": "Forward_Debug_Port",
"type": "shell",
"command": "adb",
"args": [
"forward",
"tcp:5039",
"tcp:5039"
],
"presentation": {
"reveal": "never"
},
"problemMatcher": []
},{
"label": "Build_Android",
"type": "shell",
"command": "./android/build.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},{
"type": "shell",
"label": "QMAKE",
"command": "qmake -config debug && make",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/qt"
},
"presentation": {
"reveal": "always"
},
"detail": "QMake 模板 工作流 任务"
}
]
}