-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts2phone.sublime-project
39 lines (39 loc) · 1.12 KB
/
contacts2phone.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
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"ecc_use_libclang": true,
"ecc_show_type_info": true,
"ecc_libclang_path": "/usr/lib/x86_64-linux-gnu/libclang-14.so.1",
"ecc_common_flags" : [
"-I/usr/include",
"-I/usr/local/include",
"-I$project_base_path/src",
"-I/usr/include/glib-2.0",
"-I/usr/lib/glib-2.0/include",
"-I/usr/include/evolution-data-server",
"-I/usr/include/libmount",
"-I/usr/include/blkid",
"-I/usr/include/libsecret-1",
"-I/usr/include/gio-unix-2.0",
"-I/usr/include/libxml2",
"-I/usr/include/libsoup-2.4",
"-I/usr/include/nss",
"-I/usr/include/nspr",
// this is needed to include the correct headers for clang
"-I/usr/lib/clang/$clang_version/include",
],
"ecc_lang_flags": {
"C": ["-std=c11"],
"CPP": ["-std=c++11"],
"OBJECTIVE_C": ["-x", "objective-c", "-fconstant-string-class=OFConstantString", "-fno-constant-cfstrings"],
"OBJECTIVE_CPP": ["-x", "objective-c", "-fconstant-string-class=OFConstantString", "-fno-constant-cfstrings"]
},
"ecc_triggers" : [ ".", "->", ":", "::", " ", " ", "(", "[" ],
}
}