aboutsummaryrefslogtreecommitdiff
path: root/bindgen
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2024-02-29 19:02:32 +0100
committerAndre Weissflog <floooh@gmail.com>2024-02-29 19:02:32 +0100
commit069f16523199c7f4a5550985fb9d2107c1e92a3c (patch)
tree336cd932459577c6769c95355beb443715dd7e61 /bindgen
parent1d5ff8593ca2d36cc9c9915b959ba3cd4868b8e7 (diff)
remove sokol_imgui.h from the rust bindings (trouble with GH Actions)
Diffstat (limited to 'bindgen')
-rw-r--r--bindgen/gen_all.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bindgen/gen_all.py b/bindgen/gen_all.py
index 46962298..24389e7d 100644
--- a/bindgen/gen_all.py
+++ b/bindgen/gen_all.py
@@ -31,11 +31,7 @@ for task in tasks:
gen_zig.gen(c_header_path, main_prefix, dep_prefixes)
# Rust
-rust_tasks = [
- *tasks,
- [ '../util/sokol_imgui.h', 'simgui_', ['sg_', 'sapp_'] ],
-]
gen_rust.prepare()
-for task in rust_tasks:
+for task in tasks:
[c_header_path, main_prefix, dep_prefixes] = task
gen_rust.gen(c_header_path, main_prefix, dep_prefixes)