-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDXL.sublime-build
42 lines (42 loc) · 1.77 KB
/
DXL.sublime-build
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
{
"cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "Run"],
"selector": "source.dxl",
"file_regex": "^(?:-?R?-[EWF]- DXL: |\\s)?<(?!Line:)(.*):([0-9]+)> ?(?:.*)",
"encoding": "UTF-8",
"syntax": "Packages/DXL/DxlBuild.tmLanguage",
"variants": [
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "CheckAllocationLeak"],
"name": "DXL: Allocation Leak"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceAllocations"],
"name": "DXL: Trace Allocations"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceAllocationsVerbose"],
"name": "DXL: Trace Allocations Verbose"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceExecution"],
"name": "DXL: Trace Execution"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceExecutionVerbose"],
"name": "DXL: Trace Execution Verbose"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceDelays"],
"name": "DXL: Trace Delays"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceDelaysVerbose"],
"name": "DXL: Trace Delays Verbose"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceVariables"],
"name": "DXL: Trace Variables"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "TraceVariablesVerbose"],
"name": "DXL: Trace Variables Verbose"
},
{ "cmd": ["$packages\\DXL\\Build\\Build DXL.exe", "$file", "ShowErrors"],
"name": "DXL: Errors"
},
{ "cmd": ["$packages\\DXL\\Lint\\Dxl.exe", "$file"],
"name": "DXL: Lint"
}
]
}