-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathD.sublime-build
More file actions
38 lines (37 loc) · 811 Bytes
/
D.sublime-build
File metadata and controls
38 lines (37 loc) · 811 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
{
"cmd": ["dmd", "-g", "-debug", "$file"],
"file_regex": "^(.*?)\\(([0-9]+),?([0-9]+)?\\): (.*)",
"selector": "source.d",
"variants":
[
{
"name": "Run",
"cmd": ["rdmd", "-g", "-debug", "$file"]
},
{
"name": "dub",
"working_dir": "$project_path",
"cmd": ["dub"]
},
{
"name": "dub (single file)",
"working_dir": "$project_path",
"cmd": ["dub", "--single", "$file"]
},
{
"name": "dub build",
"working_dir": "$project_path",
"cmd": ["dub", "build"]
},
{
"name": "dub build (single file)",
"working_dir": "$project_path",
"cmd": ["dub", "build", "--single", "$file"]
},
{
"name": "dub test",
"working_dir": "$project_path",
"cmd": ["dub", "test"]
}
]
}