-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhpcap.sublime-project
68 lines (68 loc) · 1.18 KB
/
hpcap.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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"SublimeLinter":
{
"linters":
{
"clang":
{
"extra_flags": "-Wall -I${project_folder}/include -I${project_folder}/driver/common",
"include_dirs":
[
"${project_folder}/include",
"${project_folder}/driver/common"
]
}
}
},
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"folders":
[
{
"folder_exclude_patterns":
[
"doc",
"obj",
"bin"
],
"path": "./"
}
],
"settings":
{
"AStyleFormatter":
{
"autoformat_on_save": true,
"options_c":
{
"additional_options_file": "${project_path}/.astylerc",
"use_only_additional_options": true
}
},
"ecc_common_flags":
[
"-I/usr/include",
"-I$project_base_path/src",
"-I$project_base_path/includes",
"-I$project_base_path/include",
"-I$project_base_path/driver/common",
"-I/usr/lib/clang/$clang_version/include",
"-I/opt/local/include"
],
"sublimeclang_options":
[
"-I${project_path}/include",
"-I${project_path}/driver/common",
"-Wall",
"-pedantic",
"-std=c99"
]
}
}