-
Notifications
You must be signed in to change notification settings - Fork 116
/
microprofile-dev.sublime-project
52 lines (50 loc) · 1.05 KB
/
microprofile-dev.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
{
"settings": {
"ClangFormat": {
"format_on_save": false
}
},
"folders":
[
{
"path": "."
}
],
"build_systems":
[
{
"name":"workbench",
"osx" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/workbench"
},
"linux" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/workbench"
}
},
{
"name":"dynamic_instrument",
"osx" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/dynamic_instrument"
},
"linux" : {
"shell_cmd": "make",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/dynamic_instrument"
}
},
{
"name":"simple",
"osx" : {
"shell_cmd": "make embed",
"file_regex": "(...*?):([0-9]*):([0-9]*):",
"working_dir": "${project_path}/demo/simple"
}
}
]
}