forked from cyberbotics/webots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.atom-build.json
65 lines (65 loc) · 1.97 KB
/
.atom-build.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
63
64
65
{
"name": "launch Webots",
"cmd": "./webots",
"cwd": "{PROJECT_PATH}/webots",
"args": [ "--mode=pause" ],
"targets": {
"all release": {
"cmd": "make",
"cwd": "{PROJECT_PATH}",
"args": [ "release", "-j$NUMBER_OF_PROCESSOR" ]
},
"all debug": {
"cmd": "make",
"cwd": "{PROJECT_PATH}",
"args": [ "debug", "-j$NUMBER_OF_PROCESSOR" ]
},
"all clean": {
"cmd": "make",
"cwd": "{PROJECT_PATH}",
"args": [ "clean" ]
},
"webots release": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/webots",
"args": [ "release", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"webots debug": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/webots",
"args": [ "debug", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"webots clean": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/webots",
"args": [ "clean" ]
},
"controller release": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"args": [ "release", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"controller debug": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"args": [ "debug", "-j$NUMBER_OF_PROCESSOR" ],
"errorMatch": "(?<file>[\\/0-9a-zA-Z\\._]+):(?<line>\\d+):(?<col>\\d+):\\s+(?<message>.+)"
},
"controller clean": {
"cmd": "make",
"cwd": "{PROJECT_PATH}/src/lib/Controller",
"args": [ "clean" ]
},
"export doc": {
"cmd": "python local_exporter.py",
"cwd": "{PROJECT_PATH}/docs"
},
"test doc": {
"cmd": "python -m unittest discover",
"cwd": "{PROJECT_PATH}/docs"
}
}
}