-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyu.sublime-project
43 lines (42 loc) · 922 Bytes
/
yu.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
{
"folders":
[
{
"path": "."
}
],
"build_systems":
[
{
"name": "Lua",
"cmd":["/usr/local/bin/lua","test.lua","$file"],
"working_dir": "${project_path}",
"target":"exec_in_window"
},
{
"name": "Lua-ERRTEST",
"cmd":["/usr/local/bin/lua","errortest.lua"],
"target":"exec_in_window",
"working_dir": "${project_path}"
},
{
"name": "Lua-Debug",
"cmd":["open","./runtest"],
"target":"exec_in_window",
"working_dir": "${project_path}"
},
{
"name": "moai",
"cmd": ["open","./moaitest"],
"working_dir": "${project_path}"
}
],
"settings":
{
"build_switcher_systems":
[
"Lua",
"Lua-Debug"
]
}
}