diff options
| author | Andre Weissflog <floooh@gmail.com> | 2024-07-10 08:51:30 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2024-07-10 08:51:30 +0200 |
| commit | 7b20c1936229370277d1c61bde950bce194de584 (patch) | |
| tree | 76f4c5f4de46654fa76430beed0b22624dbf5351 | |
| parent | ab1108641067952916dfdc04dda22a2254e73933 (diff) | |
fix bindgen readme
| -rw-r--r-- | bindgen/README.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindgen/README.md b/bindgen/README.md index aef1ec17..40e5c417 100644 --- a/bindgen/README.md +++ b/bindgen/README.md @@ -2,7 +2,7 @@ > REMINDER: we can pass `-fparse-all-comments` to the clang ast-dump command line which adds the following node types to the ast-dump.json: FullComment, ParagraphComment, TextComment. This might allow us to preserve comments in the language bindings (might be useful as part of a bigger change to make sokol header comments autodoc and Intellisense-friendly) -### Zig +### Updating the bindings First make sure that clang and python3 are in the path: @@ -26,10 +26,11 @@ To update the Zig bindings: > git clone https://github.com/floooh/sokol-nim > git clone https://github.com/floooh/sokol-odin > git clone https://github.com/floooh/sokol-rust +> git clone https://github.com/floooh/sokol-d > python3 gen_all.py ``` -Test and run samples: +...and then to test and run Zig samples: ``` > cd sokol/bindgen/sokol-zig |