diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /codemaker/README.md | |
parent | Initial commit. (diff) | |
download | libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | codemaker/README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/codemaker/README.md b/codemaker/README.md new file mode 100644 index 000000000..c195112fd --- /dev/null +++ b/codemaker/README.md @@ -0,0 +1,19 @@ +# Language Code Generators for UNOIDL Entities + +Generators for language-binding--specific representations of UNOIDL entities: + +- `cppumaker` generates header (`.hdl` and `.hpp`) files for the C++ UNO language + binding +- `javamaker` generates class files for the JVM language binding +- the codemaker for .NET is in module `cli_ure` + +Some of the code is re-used by the skeletonmakers in module `unodevtools`. + +Note the different terminology used by cppumaker vs. gbuild for the three +variants that can be generated by cppumaker for some of the inline functions: + + cppumaker switch: -L; cpputype.cxx: light; gbuild: normal; + cppumaker switch: none; cpputype.cxx: normal; gbuild: bootstrap; + cppumaker switch: -C; cpputype.cxx: comprehensive; gbuild: comprehensive; + +which can be a source of confusion. |