WASM UNO: add a minimal dummy bridge
[LibreOffice.git] / codemaker / README.md
blobc195112fde69cf370450ab632ba2103bad61184d
1 # Language Code Generators for UNOIDL Entities
3 Generators for language-binding--specific representations of UNOIDL entities:
5 - `cppumaker` generates header (`.hdl` and `.hpp`) files for the C++ UNO language
6   binding
7 - `javamaker` generates class files for the JVM language binding
8 - the codemaker for .NET is in module `cli_ure`
10 Some of the code is re-used by the skeletonmakers in module `unodevtools`.
12 Note the different terminology used by cppumaker vs. gbuild for the three
13 variants that can be generated by cppumaker for some of the inline functions:
15     cppumaker switch: -L;    cpputype.cxx: light;          gbuild: normal;
16     cppumaker switch: none;  cpputype.cxx: normal;         gbuild: bootstrap;
17     cppumaker switch: -C;    cpputype.cxx: comprehensive;  gbuild: comprehensive;
19 which can be a source of confusion.