Skip to content

Commit

Permalink
build(generator): create AST tree with all includes and type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaiR committed Aug 11, 2024
1 parent 7b8ca02 commit 746c488
Show file tree
Hide file tree
Showing 11 changed files with 33,758 additions and 10,470 deletions.
22 changes: 9 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,14 @@ tasks.register('buildAll') { t ->

tasks.register('generateAst', GenerateAst) {
headerFiles = [
(file('include/imgui/imgui.h')): [],
(file('include/imgui/imgui_internal.h')): [
"#define IMGUI_HAS_TABLE",
"#define IMGUI_HAS_VIEWPORT",
"#define IMGUI_HAS_DOCK",
],
(file('include/ImGuiFileDialog/ImGuiFileDialog.h')): [],
(file('include/imgui-knobs/imgui-knobs.h')): [],
(file('include/imguizmo/ImGuizmo.h')): [],
(file('include/imnodes/imnodes.h')): [],
(file('include/implot/implot.h')): [],
(file('include/imgui-node-editor/imgui_node_editor.h')): [],
(file('include/ImGuiColorTextEdit/TextEditor.h')): [],
file('include/imgui/imgui.h'),
file('include/imgui/imgui_internal.h'),
file('include/ImGuiFileDialog/ImGuiFileDialog.h'),
file('include/imgui-knobs/imgui-knobs.h'),
file('include/imguizmo/ImGuizmo.h'),
file('include/imnodes/imnodes.h'),
file('include/implot/implot.h'),
file('include/imgui-node-editor/imgui_node_editor.h'),
file('include/ImGuiColorTextEdit/TextEditor.h'),
]
}
Loading

0 comments on commit 746c488

Please sign in to comment.