-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkbench.build.jsonc
More file actions
88 lines (79 loc) · 2.77 KB
/
workbench.build.jsonc
File metadata and controls
88 lines (79 loc) · 2.77 KB
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
{
"name": "euphoria",
"dependencies":
[
"sdl-2.0.8", "assimp"
],
"includes":
[
[
"#include \"core/{file_stem}\\.h\"",
"#include \"runner/{file_stem}\\.h\"",
"#include \"editor/{file_stem}\\.h\"",
"#include \"window/{file_stem}\\.h\"",
"#include \"t3d/{file_stem}\\.h\"",
"#include \"render/{file_stem}\\.h\"",
"#include \"gui/{file_stem}\\.h\"",
"#include \"tests/{file_stem}\\.h\"",
"#include \"minsynth/{file_stem}\\.h\""
],
[
"#include <[a-zA-Z_0-9]+>"
],
[
"#include \"range/v3/view/[a-z_A-Z0-9.]+\\.hpp\"",
"#include <range/v3/[a-z_A-Z0-9.]+\\.hpp>"
],
["#include \"magic_enum/magic_enum\\.hpp\""],
[
"#include \"spdlog/fmt/ostr\\.h\"",
"#include \"spdlog/spdlog\\.h\""
],
["#include \"sol/sol\\.hpp\""],
["#include \"pugixml\\.hpp\""],
["#include \"ctti/[a-z_A-Z0-9]+\\.hpp\""],
[
"#include \"imgui/[a-z_A-Z0-9]+\\.h\"",
"#include \"imgui_[a-z_A-Z0-9]+\\.h\""
],
[
"#include \"assimp/[a-z_A-Z0-9]+\\.h\"",
"#include \"assimp/[a-z_A-Z0-9]+\\.hpp\""
],
["#include \"stb_[a-z_A-Z0-9]+\\.h\""],
[
"#include \"SDL\\.h\"",
"#include \"SDL_[a-z_A-Z0-9]+\\.h\""
],
["#include \"font8x8/[a-z_A-Z0-9]+\\.h\""],
["#include \"font8x13\\.h\""],
["#include \"fmt/[a-z_A-Z0-9]+\\.h\""],
["#include \"crc32/crc32\\.h\""],
["#include <direct\\.h>"],
["#include <dirent\\.h>"],
["#include <unistd\\.h>"],
["#include <cxxabi\\.h>"],
["#include <execinfo\\.h>"],
["#include \"glad/glad\\.h\""],
["#include \"font_material_design_icons\\.h\""],
["#include \"font_noto_sans_display\\.h\""],
["#include \"IconsMaterialDesignIcons\\.h\""],
["#include \"catch\\.hpp\""],
["#include \"RtMidi\\.h\""],
["#include \"windows\\.h\""],
[
"#include \"gaf/[a-z_A-Z0-9]+\\.h\"",
"#include \"gaf_[a-z_A-Z0-9]+\\.h\""
],
["#include \"core/[a-z_A-Z0-9.]+\\.h\""],
["#include \"runner/[a-z_A-Z0-9.]+\\.h\""],
["#include \"editor/[a-z_A-Z0-9.]+\\.h\""],
["#include \"window/[a-z_A-Z0-9.]+\\.h\""],
["#include \"t3d/[a-z_A-Z0-9.]+\\.h\""],
["#include \"render/[a-z_A-Z0-9.]+\\.h\""],
["#include \"gui/[a-z_A-Z0-9.]+\\.h\""],
["#include \"minsynth/[a-z_A-Z0-9.]+\\.h\""],
["#include \"tests/[a-z_A-Z0-9.]+\\.h\""],
["#include \"euph_generated_config.h\""]
]
}