-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathekg-ui-library.sublime-project
61 lines (61 loc) · 1.6 KB
/
ekg-ui-library.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
{
"folders":
[
{
"path": ".",
}
],
"settings":
{
"tab_size": 2,
"LSP":
{
"binary": "clang++",
"clangd":
{
"initializationOptions":
{
"clangd.compile-commands-dir": "$folder/cmake-build",
},
},
},
},
"build_systems":
[
{
"name": "Build Linux GNU",
"shell_cmd":
"cd $folder && EKG_BUILD_MODE=build-only EKG_BUILD_COMPILER=/usr/bin/g++ sh ./linux.sh"
},
{
"name": "Build-&-Test Linux GNU",
"shell_cmd":
"cd $folder && EKG_BUILD_MODE=build-and-test EKG_BUILD_COMPILER=/usr/bin/g++ sh ./linux.sh"
},
{
"name": "Build Linux Clang",
"shell_cmd":
"cd $folder && EKG_BUILD_MODE=build-only EKG_BUILD_COMPILER=/usr/bin/g++ sh ./linux.sh"
},
{
"name": "Build-&-Test Linux Clang",
"shell_cmd":
"cd $folder && EKG_BUILD_MODE=build-and-test EKG_BUILD_COMPILER=/usr/bin/clang++ sh ./linux.sh"
},
{
"name": "Build Linux WASM/emscripten",
"shell_cmd":
"cd $folder && EKG_BUILD_MODE=build-only EKG_BUILD_COMPILER=emscripten sh ./linux.sh"
},
{
"name": "Build Windows GNU",
"shell_cmd":
"cd $folder && cmake -S . -B ./cmake-build/ -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=1 && cmake --build ./cmake-build/"
},
{
"name": "Build-&-Test Windows GNU",
"shell_cmd":
"cd $folder && cmake -S . -B ./cmake-build/ -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=1 && cmake --build ./cmake-build/ && cd ./ekg-sandbox && cmake -S . -B ./cmake-build -G Ninja -DEKG_DEVELOPER_MODE=1 && cmake --build ./cmake-build && cd ./bin && ./ekg-showcase",
},
],
}