File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Djinni generator parses an interface definition file and generates:
20
20
- Objective-C++ code to convert between C++ and Objective-C
21
21
- Python and C code to convert between C++ and Python over CFFI
22
22
- C++/CLI code to convert between C++ and C#
23
+ - C++ code to convert between WebAssembly and TS/JS
23
24
24
25
25
26
## Installation
@@ -86,3 +87,5 @@ The code in this repository is in large portions copied from [dropbox/djinni](ht
86
87
- Jacob Potter
87
88
- Iulia Tamas
88
89
- Andrew Twyman
90
+
91
+ WebAssembly support is borrowed in large part from [ snapchat/djinni] ( https://github.com/snapchat/djinni ) .
Original file line number Diff line number Diff line change @@ -145,6 +145,14 @@ djinni \
145
145
| ` --cppcli-namespace ... ` | The namespace name to use for generated C++/CLI classes. |
146
146
| ` --cppcli-include-cpp-prefix <prefix> ` | The prefix for ` #include ` of the main C++ header files from C++/CLI files. |
147
147
148
+ ### WebAssembly/TS/JS
149
+
150
+ | Argument | Description |
151
+ | ----------------------------------------| ----------------------------------------------------------------------------|
152
+ | ` --wasm-out <out-folder> ` | WebAssembly bridge code output folder |
153
+ | ` --ts-out <out-folder> ` | Path to the Typescript type definitions output folder |
154
+ | ` --ts-module <module> ` | Name of the module for the Typescript types. ` module.ts ` by default. |
155
+
148
156
149
157
### Yaml Generation
150
158
You can’t perform that action at this time.
0 commit comments