-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBeelzebub.sublime-project
94 lines (94 loc) · 2 KB
/
Beelzebub.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"build_systems":
[
{
"cmd": "lua vmakefile.lua -t all --march=native --mtune=native -j 8 Beelzebub debug amd64",
"env":
{
"IN_SUBLIME": "true"
},
"file_regex": "^(?:In file included from | *)(.+):([0-9]+):([0-9]+): ?(.*)$",
"name": "Beelzebub - Debug - AMD64 - All Tests",
"windows":
{
"path": "C:\\cygwin64\\usr\\local\\bin;C:\\cygwin64\\usr\\bin;C:\\cygwin64\\bin;C:\\Program Files (x86)\\VMware\\VMware Workstation"
},
"working_dir": "$project_path"
},
{
"cmd": "lua vmakefile.lua -t all --march=native --mtune=native -j 8 Beelzebub profile amd64",
"env":
{
"IN_SUBLIME": "true"
},
"file_regex": "^(?:In file included from | *)(.+):([0-9]+):([0-9]+): ?(.*)$",
"name": "Beelzebub - Profile - AMD64 - All Tests",
"windows":
{
"path": "C:\\cygwin64\\usr\\local\\bin;C:\\cygwin64\\usr\\bin;C:\\cygwin64\\bin;C:\\Program Files (x86)\\VMware\\VMware Workstation"
},
"working_dir": "$project_path"
},
{
"cmd": "lua vmakefile.lua -t all --march=native --mtune=native -j 8 Beelzebub release amd64",
"env":
{
"IN_SUBLIME": "true"
},
"file_regex": "^(?:In file included from | *)(.+):([0-9]+):([0-9]+): ?(.*)$",
"name": "Beelzebub - Release - AMD64 - All Tests",
"windows":
{
"path": "C:\\cygwin64\\usr\\local\\bin;C:\\cygwin64\\usr\\bin;C:\\cygwin64\\bin;C:\\Program Files (x86)\\VMware\\VMware Workstation"
},
"working_dir": "$project_path"
},
{
"auto_close": false,
"cmd":
[
"bash",
"-c",
"./scripts/full-build"
],
"name": "Full Build in Terminus",
"target": "terminus_open",
"working_dir": "$folder"
}
],
"folders":
[
{
"folder_exclude_patterns":
[
"build",
".vs",
".vmake",
".git",
".stfolder",
".stversions"
],
"name": "Beelzebub",
"path": "."
}
],
"settings":
{
"LSP":
{
"ccls":
{
"enabled": false
},
"clangd":
{
"enabled": false
},
"cquery":
{
"enabled": true
}
},
"custom.beel": true
}
}