forked from niosus/EasyClangComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy_clang_complete.sublime-project
42 lines (41 loc) · 1.14 KB
/
easy_clang_complete.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
{
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"folders":
[
{
"path": "."
}
],
"settings":
{
// use "ecc_<setting>" or "easy_clang_complete_<setting>" to override
// any "<setting>" from the plugin preferences project-wide.
// override "use_libclang" setting in this project.
"ecc_use_libclang": true,
// override "verbose" setting in this project.
"easy_clang_complete_verbose": true,
// override "flags_sources" setting in this project.
"ecc_flags_sources": [
// cmake entry
{
"file": "CMakeLists.txt",
"flags": ["-DCMAKE_BUILD_TYPE=Release", "-D XXXX=ON"],
"prefix_paths": [ "/opt/ros/indigo",
"~/Code/catkin_ws/devel",
"$project_base_path/catkin_ws/devel" ]
},
// Makefile entry
{ "file": "Makefile" },
// .clang_complete entry
{ "file": ".clang_complete" }
],
}
}