-
Notifications
You must be signed in to change notification settings - Fork 59
/
cleanCppProject.sublime-project
56 lines (54 loc) · 1.81 KB
/
cleanCppProject.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
{
"folders":
[
{
"file_exclude_patterns":[
"*swp"
],
"folder_exclude_patterns":
[
"build*"
],
"path": "."
}
],
"build_systems":
[
{
"name": "build",
"working_dir": "${project_path}/build",
"file_regex": "^([\\/\\.^\\s^\\[]..*?):([0-9]+):([0-9]+):(.*)",
"shell": true,
"cmd":["cmake --build ."],
// "syntax": "Packages/cppinabox/C++build.sublime-syntax",
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build ."},
"variants": [
{
"name":"install",
"cmd":["cmake --build . --target install"],
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build . --target install"},
},
{
"name":"doc",
"cmd":["cmake --build . --target doc"],
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build . --target doc"},
},
{
"name":"check",
"cmd":["cmake --build . --target check"],
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build . --target check"},
},
{
"name":"clean",
"cmd":["cmake --build . --target clean"],
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build . --target clean"},
},
{
"name":"run",
"cmd":["cmake --build . --target run"],
"windows":{"shell_cmd":"c:/runLinux32.bat cmake --build . --target run"},
},
]
},
]
}