forked from quarnster/SublimeClang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sublimeclang.sublime-project
52 lines (52 loc) · 1.84 KB
/
sublimeclang.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
{
"folders":
[
{
"path": "."
}
],
"build_systems":
[
{
"name": "SublimeClang",
"cmd": ["make", "-j3"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path}/src/build/"
},
{
"name": "SublimeClang - unittests",
"cmd": ["python", "unittests/unittest.py"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path}"
},
{
"name": "SublimeClang - unittests -warn -dryrun",
"cmd": ["python", "unittests/unittest.py", "-warn", "-dryrun"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path}"
},
{
"name": "SublimeClang - unittests - debug",
"cmd": ["python", "unittests/unittest.py", "-warn", "-debug", "-dryrun"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path}"
},
{
"name": "SublimeClang - unittests - debugnew",
"cmd": ["python", "unittests/unittest.py", "-debugnew"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${project_path}"
}
],
"settings":
{
"sublimeclang_options":
[
"-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple-darwin11/4.2.1/include/",
"-isysroot",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/",
"-F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks",
"-ICocoa"
]
}
}