-
Notifications
You must be signed in to change notification settings - Fork 3
/
oup.sublime-project
80 lines (80 loc) · 1.5 KB
/
oup.sublime-project
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"folders":
[
{
"path": ".",
}
],
"settings":
{
"cmake":
{
"build_folder": "$folder/build",
},
"ClangFormat":
{
"format_on_save": true,
},
},
"build_systems":
[
{
"file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$",
"name": "oup (Linux)",
"shell_cmd": "make -j12",
"syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
"variants":
[
{
"name": "clean",
"shell_cmd": "make -j12 clean",
},
{
"name": "install",
"shell_cmd": "make -j12 install",
},
{
"name": "install/local",
"shell_cmd": "make -j12 install/local",
},
{
"name": "install/strip",
"shell_cmd": "make -j12 install/strip",
},
{
"name": "list_install_components",
"shell_cmd": "make -j12 list_install_components",
},
{
"name": "rebuild_cache",
"shell_cmd": "make -j12 rebuild_cache",
},
{
"name": "test",
"shell_cmd": "make -j12 test",
},
{
"name": "oup_runtime_tests_run",
"shell_cmd": "make -j12 oup_runtime_tests_run",
},
{
"name": "oup_runtime_tests",
"shell_cmd": "make -j12 oup_runtime_tests",
},
{
"name": "oup_size_benchmark",
"shell_cmd": "make -j12 oup_size_benchmark",
},
{
"name": "oup_speed_benchmark",
"shell_cmd": "make -j12 oup_speed_benchmark",
},
{
"name": "snitch",
"shell_cmd": "make -j12 snitch",
},
],
"working_dir": "$folder/build",
}
],
}