-
Notifications
You must be signed in to change notification settings - Fork 27
/
Astra.sublime-project
55 lines (55 loc) · 981 Bytes
/
Astra.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
{
"folders":
[
{
"file_exclude_patterns":
[
".hg*",
".git*",
"Astra.sublime-*"
],
"path": "/Volumes/Projects/Astra/Public"
}
],
"settings":
{
"sublimeclang_options":
[
"-I${folder:${project_path:main.c}}/asc",
"-I${folder:${project_path:main.c}}/lua",
"-I${folder:${project_path:main.c}}",
"-I${folder:${project_path:main.c}}/contrib/build/ffmpeg",
"-Wno-deprecated-declarations",
"-std=iso9899:1999"
],
"rulers": [ 101 ],
"wrap_width": 100
},
"build_systems":
[
{
"name": "Astra",
"working_dir": "${project_path}",
"cmd": [ "make" ],
"variants":
[
{
"name": "Configure",
"cmd": [ "${project_path}/configure.sh" ]
},
{
"name": "Deploy",
"cmd": [ "/Volumes/Projects/deploy.sh", "${project_path}", "$file" ]
},
{
"name": "Clean",
"cmd": [ "make", "clean" ]
},
{
"name": "DistClean",
"cmd": [ "make", "distclean" ]
}
]
}
]
}