forked from khanhas/minnet-quickjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
minnet.sublime-project
64 lines (64 loc) · 1.63 KB
/
minnet.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
{
"folders":
[
{
"file_exclude_patterns":
[
".git*",
"*.xz",
"*.txz",
"*.log",
"*.tmp",
"cmake_install.cmake"
],
"folder_exclude_patterns":
[
".*",
".git",
".git/*",
"inst"
],
"path": "."
}
],
"build_systems":
[
{
"name": "Build debug",
"shell_cmd": "make -C build/*-debug install",
"working_dir": "${project_path}"
},
{
"name": "Rebuild CTags",
"shell_cmd": "ctags *.c *.h",
"working_dir": "${project_path}"
},
{
"name": "Rebuild CScope",
"shell_cmd": "cscope-indexer .",
"working_dir": "${project_path}"
},
{
"name": "clang-format",
"shell_cmd": "clang-format -verbose -style=file -i *.[ch]`",
"working_dir": "${project_path}"
},
{
"name": "prettier",
"shell_cmd": "(. ~/.nvm/nvm.sh; nvm use 14; set -x; yarn run format)",
"working_dir": "${project_path}"
},
{
"name": "CMake",
"shell_cmd": ". ./cfg.sh; TYPE=Debug cfg",
"working_dir": "${project_path}"
},
{
"name": "make",
"shell_cmd": "make -C ../build/x86_64-linux-debug install -j10",
"working_dir": "${project_path}"
}
],
"debugger_configurations":
[]
}