From df71cc24cb273c0cf68ccef91932c09893006b18 Mon Sep 17 00:00:00 2001 From: Andre Weissflog Date: Mon, 2 Sep 2024 16:46:10 +0200 Subject: sokol-d bindings: sokol_imgui.h wasn't actually included in the bindings generation --- bindgen/gen_all.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bindgen/gen_all.py b/bindgen/gen_all.py index 6800909a..385d1f54 100644 --- a/bindgen/gen_all.py +++ b/bindgen/gen_all.py @@ -42,8 +42,12 @@ for task in zig_tasks: gen_zig.gen(c_header_path, main_prefix, dep_prefixes) # D +d_tasks = [ + *tasks, + [ '../util/sokol_imgui.h', 'simgui_', ['sg_', 'sapp_'] ], +] gen_d.prepare() -for task in tasks: +for task in d_tasks: [c_header_path, main_prefix, dep_prefixes] = task gen_d.gen(c_header_path, main_prefix, dep_prefixes) -- cgit v1.2.3