-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoxide.sublime-project
More file actions
41 lines (40 loc) · 673 Bytes
/
oxide.sublime-project
File metadata and controls
41 lines (40 loc) · 673 Bytes
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
{
"folders":
[
{
"path": "source"
},
{
"path": "gen/source"
}
],
"build_systems":
[
{
"name": "dub",
"shell_cmd": "dub build --build=unittest",
"working_dir": "$project_path",
"file_regex": "^(.+)\\(([0-9]+)\\)(): (.+)$",
"variants":
[
{
"name": "grammar gen",
"working_dir": "$project_path/gen",
"shell_cmd": "dub run"
},
{
"name": "release",
"shell_cmd": "dub build --build=release"
},
{
"name": "run",
"shell_cmd": "start cmd /c \"oxide & pause\""
},
{
"name": "run-linux",
"shell_cmd": "xfce4-terminal -x bash -c 'dub run && read -n1'"
}
]
}
]
}