-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpir-8-emu.sublime-project
76 lines (74 loc) · 1.39 KB
/
pir-8-emu.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"build_systems":
[
{
"working_dir": "$project_path",
"shell_cmd": "make && cargo build --color always && cargo test --color always",
"name": "Build pir-8-emu",
"target": "ansi_color_build",
"syntax": "Packages/ANSIescape/ANSI.sublime-syntax"
},
{
"working_dir": "$project_path",
"shell_cmd": "cargo doc --color always",
"name": "Document pir-8-emu",
"target": "ansi_color_build",
"syntax": "Packages/ANSIescape/ANSI.sublime-syntax"
}
],
"folders":
[
{
"follow_symlinks": true,
"name": "Source",
"path": "src"
},
{
"follow_symlinks": true,
"name": "Tests",
"path": "tests"
},
{
"follow_symlinks": true,
"name": "Test data",
"path": "test-data"
},
{
"follow_symlinks": true,
"name": "Examples",
"path": "examples"
},
{
"follow_symlinks": true,
"name": "Native headers",
"path": "include"
},
{
"follow_symlinks": true,
"name": "Native handler examples",
"path": "handler-examples"
},
{
"follow_symlinks": true,
"name": "External data",
"path": "ext"
},
{
"follow_symlinks": true,
"name": "Manpages",
"path": "man"
},
{
"follow_symlinks": true,
"name": "Assets",
"path": "assets"
},
{
"follow_symlinks": true,
"name": "Build scripts",
"path": ".",
"file_include_patterns": ["Cargo.*", "*.yml", "*Makefile"],
"folder_exclude_patterns": ["*"]
},
]
}