diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-02-12 15:59:06 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-02-12 15:59:06 +0100 |
| commit | 17611db5916c894b65153a55cc9ba528ed7794e3 (patch) | |
| tree | f7fa62bb5857112078158048ca7fb43445e864ae /bindgen | |
| parent | 971a9044fef343373f2d790d969421a538a77963 (diff) | |
add sokol_log.h to odin bindings generator
Diffstat (limited to 'bindgen')
| -rw-r--r-- | bindgen/gen_odin.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bindgen/gen_odin.py b/bindgen/gen_odin.py index 65703815..95cc8700 100644 --- a/bindgen/gen_odin.py +++ b/bindgen/gen_odin.py @@ -12,6 +12,7 @@ c_root = f'{bindings_root}/c' module_root = f'{bindings_root}/sokol' module_names = { + 'slog_': 'log', 'sg_': 'gfx', 'sapp_': 'app', 'sapp_sg': 'glue', @@ -65,6 +66,7 @@ system_libs = { } c_source_names = { + 'slog_': 'sokol_log.c', 'sg_': 'sokol_gfx.c', 'sapp_': 'sokol_app.c', 'sapp_sg': 'sokol_glue.c', |