-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRosie.sublime-project
105 lines (103 loc) · 3 KB
/
Rosie.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"folders": [
{
"path": ".",
"folder_exclude_patterns": ["export"],
"file_exclude_patterns": ["tags", ".tags", ".tags_sorted_by_file"],
"follow_symlinks": true
}
],
"settings":
{
"tab_size": 2,
"translate_tabs_to_spaces": true,
"rulers": [80]
},
"build_systems":
[
{
"name": "Build (HTML5)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml html5"
},
{
"name": "Build (Windows)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml windows"
},
{
"name": "Build (Windows Neko)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml windows -neko"
},
{
"name": "Build (macOS)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml mac -64"
},
{
"name": "Build (macOS Neko)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml mac -neko"
},
{
"name": "Build (Linux 64)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml linux -64"
},
{
"name": "Build (Linux 64 Neko)",
"shell_cmd": "haxelib run lime build $project_path/Project.xml linux -neko"
},
{
"name": "Test (HTML5)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml html5"
},
{
"name": "Test (Windows)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml windows"
},
{
"name": "Test (Windows Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml windows -neko"
},
{
"name": "Test (macOS)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml mac -64"
},
{
"name": "Test (macOS Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml mac -neko"
},
{
"name": "Test (Linux 64)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml linux -64"
},
{
"name": "Test (Linux 64 Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml linux -neko"
},
{
"name": "Debug Test (HTML5)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml html5 -debug"
},
{
"name": "Debug Test (Windows)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml windows -debug"
},
{
"name": "Debug Test (Windows Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml windows -neko -debug"
},
{
"name": "Debug Test (macOS)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml mac -64 -debug"
},
{
"name": "Debug Test (macOS Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml mac -neko -debug"
},
{
"name": "Debug Test (Linux 64)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml linux -64 -debug"
},
{
"name": "Debug Test (Linux 64 Neko)",
"shell_cmd": "haxelib run lime test $project_path/Project.xml linux -neko -debug"
}
]
}