-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathc-utils.sublime-project
67 lines (67 loc) · 1.46 KB
/
c-utils.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
{
"build_systems": [
{
"name": "List",
"shell_cmd": "ls -l",
},
{
"name": "Build CMake",
"shell_cmd": "make -C build/x86_64-linux-debug -j10 install",
"working_dir": "${project_path:${folder:${file_path}}}",
},
{
"name": "Rebuild CTags",
"shell_cmd": "make .tags",
},
{
"name": "clang-format",
"shell_cmd": "clang-format -verbose -style=file -i '${file}'",
"working_dir": "${project_path:${folder:${file_path}}}",
}
],
"folders": [
{
"file_exclude_patterns": [
"*~",
"*.??make",
"*.orig",
"*.jom",
"*.gnu",
"*.ninja",
"*.stackdump",
"*.3",
"*.o",
"*.lo",
"*.d",
"*.m4",
"*~",
"*.pro.user*",
"*.internal",
"*.make",
"*cache"
],
"folder_exclude_patterns": [
"*build/*/CMakeFiles/*",
"CMakeFiles",
".*",
"*3rdparty*",
"3rdparty/xz",
"*3rdparty/xz*",
"Sources/[!c][!-]*",
"Sources/[^c][^-]*"
],
"path": ".",
}
],
"settings": {
/*"debug.configurations": [],*/
"sublimegdb_commandline": "gdb --interpreter=mi ${file}",
"sublimegdb_exec_cmd": "-exec-run",
"sublimegdb_i_know_how_to_use_gdb_thank_you_very_much": true,
"sublimegdb_workingdir": "${folder:${project_path:${file}}}",
"tab_size": 2,
},
"debugger_configurations":
[
],
}