-
Notifications
You must be signed in to change notification settings - Fork 10
/
snitch.sublime-project
129 lines (129 loc) · 2.79 KB
/
snitch.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"folders":
[
{
"path": ".",
}
],
"settings":
{
"cmake":
{
"build_folder": "$folder/build",
},
"ClangFormat":
{
"format_on_save": true,
},
"TestExplorer":
{
"data_location": ".sublime-tests",
"frameworks": [
{
"id": "runtime-tests",
"type": "catch2",
"executable_pattern": "build/tests/snitch_runtime_tests_self",
"path_prefix_style": "basename"
},
{
"id": "runtime-tests-self",
"type": "doctest-cpp",
"executable_pattern": "build/tests/snitch_runtime_tests",
"path_prefix_style": "basename"
},
{
"id": "approval-tests",
"type": "doctest-cpp",
"executable_pattern": "build/tests/snitch_approval_tests",
"cwd": "tests/approval_tests",
"path_prefix_style": "basename"
},
]
},
},
"build_systems":
[
{
"file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$",
"name": "snitch (Linux)",
"shell_cmd": "make -j12",
"syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
"variants":
[
{
"name": "clean",
"shell_cmd": "make -j12 clean",
},
{
"name": "install",
"shell_cmd": "make -j12 install",
},
{
"name": "install/local",
"shell_cmd": "make -j12 install/local",
},
{
"name": "install/strip",
"shell_cmd": "make -j12 install/strip",
},
{
"name": "list_install_components",
"shell_cmd": "make -j12 list_install_components",
},
{
"name": "rebuild_cache",
"shell_cmd": "make -j12 rebuild_cache",
},
{
"name": "test",
"shell_cmd": "make -j12 test",
},
{
"name": "snitch_runtime_tests_run",
"shell_cmd": "make -j12 snitch_runtime_tests_run",
},
{
"name": "snitch_runtime_tests_self_header_only_run",
"shell_cmd": "make -j12 snitch_runtime_tests_self_header_only_run",
},
{
"name": "snitch_runtime_tests_self_run",
"shell_cmd": "make -j12 snitch_runtime_tests_self_run",
},
{
"name": "doctest_with_main",
"shell_cmd": "make -j12 doctest_with_main",
},
{
"name": "snitch",
"shell_cmd": "make -j12 snitch",
},
{
"name": "snitch_runtime_tests",
"shell_cmd": "make -j12 snitch_runtime_tests",
},
{
"name": "snitch_runtime_tests_self",
"shell_cmd": "make -j12 snitch_runtime_tests_self",
},
{
"name": "snitch_runtime_tests_self_header_only",
"shell_cmd": "make -j12 snitch_runtime_tests_self_header_only",
},
{
"name": "src/snitch.o",
"shell_cmd": "make -j12 src/snitch.o",
},
{
"name": "src/snitch.i",
"shell_cmd": "make -j12 src/snitch.i",
},
{
"name": "src/snitch.s",
"shell_cmd": "make -j12 src/snitch.s",
},
],
"working_dir": "$folder/build",
}
],
}