-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.proteus.sublime-project
60 lines (60 loc) · 1.32 KB
/
.proteus.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
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns": [
".idea",
"cmake-build-debug",
".git"
],
"index_exclude_patterns": [
".idea",
"cmake-build-debug",
".git"
]
}
],
"settings":
{
"ClangFormat":
{
"binary": "clang-format",
"format_on_save": true,
"languages":
[
"C",
"C++",
"C++11",
"JavaScript",
"Objective-C",
"Objective-C++",
"CUDA C++"
],
"style": "file"
},
"ecc_clang_binary": "clang++-9",
"ecc_common_flags":
[
"-pedantic",
"-Wall",
"-std=c++20",
"-I/usr/local/cuda-9.2/targets/x86_64-linux/include/",
"-I$project_path/codegen",
"-I$project_path/"
],
"ecc_hide_default_completions": true,
"ecc_triggers":
[
".",
"->",
"::",
" ",
"\t",
"(",
"[",
"{"
],
"ensure_newline_at_eof_on_save": true
}
}