-
-
Notifications
You must be signed in to change notification settings - Fork 793
/
Copy pathtasks.json
37 lines (37 loc) · 1.24 KB
/
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
// © 2020 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
{
"version": "2.0.0",
"tasks": [
{
"label": "Makefile", // You can choose your own label.
"type": "shell",
"command": "make",
// Make this the default build command.
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
// You can pass all the building arguments here.
"args": [
"all",
"--debug", // Enable debug mode.
"-j24", // Launch no more than 24 jobs in parallel
"-l20" // Stop launching jobs if system load average is too high
]
},
{
"label": "buildTest", // for building test cases before running it.
"command": "make", // Could be any other shell command
"args": [
"tests",
"-j24", // Launch no more than 24 jobs in parallel
"-l20" // Stop launching jobs if system load average is too high
],
"type": "shell"
}
]
}