-
Notifications
You must be signed in to change notification settings - Fork 0
/
asl.sublime-project
40 lines (38 loc) · 1.18 KB
/
asl.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
{
"folders":
[
{
"path": "/Users/tim/projects/adobe_asl",
"folder_exclude_patterns": ["documentation"],
"file_exclude_patterns": ["*.html"]
}
],
"settings":
{
"sublimeclang_options":
[
"-m32",
"-Wno-deprecated-declarations",
"-DADOBE_STD_SERIALIZATION",
"-I/Users/tim/projects/adobe_asl/adobe_source_libraries",
"-I/Users/tim/projects/adobe_asl/platform_release",
"-I/Users/tim/projects/adobe_asl/platform_release/macintosh",
"-I/Users/tim/projects/adobe_asl/platform_release/adobe",
"-I/opt/local/include",
"-I/usr/local/include"
],
"sublimeclang_reparse_on_activated": true,
"sublimeclang_hide_output_when_empty": true,
"sublimeclang_show_output_panel": false
},
"build_systems":
[
{
"name": "cmake",
"working_dir": "${project_path:${folder}}_build/CDebug",
"cmd": ["make", "-j", "8"],
// "cmd": ["make", "VERBOSE=1", "-j", "8"],
"file_regex": "(?:In file included from )?(.+?):([0-9]+):([0-9]+)?:?(.*)?$"
}
]
}