-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdvm.sublime-project
More file actions
47 lines (47 loc) · 983 Bytes
/
dvm.sublime-project
File metadata and controls
47 lines (47 loc) · 983 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
42
43
44
45
46
47
{
"folders":
[
{
"path": "./",
"name":"Root",
"folder_exclude_patterns":
["DVM", "DISc", "docpages", "obj", "documentation", "documentationPy",
"DataFlow Virtual Machine.xcodeproj", "prototypes"],
"file_exclude_patterns":["DVM"]
},{
"path": "./DVM",
"name": "DVM"
},{
"path": "./DISc",
"name": "DISc"
},{
"path": "./docpages",
"name": "Documentation"
}
],
"build_systems":
[
{
"name": "C++ make",
"selector": "source.c++",
"working_dir": "${project_path}",
"cmd": ["make"]
},{
"name": "doxygen markdown",
"selector":"text.html.markdown",
"working_dir": "${project_path}",
"cmd": ["make", "doc"]
},{
"name":"sublimeRepl",
"selector":"source.python",
"target": "run_existing_window_command",
"id": "repl_python_run",
//"id": "repl_pypy_run",
"file": "config/Python/Main.sublime-menu"
},{
"name": "run DIS",
"selector": "source.dis",
"cmd":["dvm", "${file_name}"]
}
]
}