-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrsvs3D.sublime-project
105 lines (105 loc) · 1.96 KB
/
rsvs3D.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"build_systems":
[
{
"file_regex": "^([^ ]*):(\\d+):(\\d+):\\s*(.*)$",
"name": "Custom Make",
"shell_cmd": "make ",
"variants":
[
{
"name": "app clean",
"shell_cmd": "make -B"
},
{
"name": "testall",
"shell_cmd": "make testall"
},
{
"name": "testnew",
"shell_cmd": "make testnew"
},
{
"name": "testall clean",
"shell_cmd": "make testall -B"
},
{
"name": "testnew clean",
"shell_cmd": "make testnew -B"
},
{
"name": "clean",
"shell_cmd": "make clean"
}
],
"working_dir": "${folder:${project_path}}"
}
],
"folders":
[
{
"file_exclude_patterns":
[
"*.d",
"*.o"
],
"path": "SRCC"
},
{
"file_exclude_patterns":
[
"*.cpp",
"*.hpp",
"*.d",
"*.o"
],
"path": "."
},
{
"path": "D:\\alexa\\Documents\\MATLAB"
}
],
"settings":
{
"SublimeLinter.linters.g++.I":
[
"C:\\ap1949include\\Eigen_all\\Eigen\\",
"C:\\ap1949include\\json\\single_include\\nlohmann",
"C:\\Users\\ap1949\\Local Documents\\PhD\\Development Work\\rsvs3D\\source\\SRCC\\incl",
"C:\\Users\\ap1949\\Local Documents\\PhD\\Development Work\\rsvs3D\\source\\SRCC\\modules\\tetgen",
"D:\\alexa\\Documents\\TRAVAIL\\UNIDESK\\PhD\\rsvs3D\\source\\SRCC\\incl",
"D:\\alexa\\Documents\\TRAVAIL\\UNIDESK\\PhD\\rsvs3D\\source\\SRCC\\modules\\tetgen",
"C:\\ap1949include\\boost_1_67_0",
"C:\\ap1949include\\cxxopts-2.1.1\\include"
],
"SublimeLinter.linters.g++.args":
[
"-fsyntax-only",
"-std=c++11",
"-DTETLIBRARY",
"-DEIGEN_NO_DEBUG",
"-DEIGEN_NO_STATIC_ASSERT",
"-DEIGEN_MPL2_ONLY"
],
"rulers":
[
80
],
"sublimegdb_commandline": "gdb --interpreter=mi ./test_RSVS3D.exe",
"sublimegdb_workingdir": "${folder:${project_path:test_RSVS3D.exe}}",
"wrap_width": 95
},
"syntax_override":
{
"\\.cpp$":
[
"User",
"C++RSVS3D"
],
"\\.hpp$":
[
"User",
"C++RSVS3D"
]
}
}