CppunitTest_sc_tiledrendering2: move to tiledrendering folder
[LibreOffice.git] / codemaker / README.md
blob839ae7d7017befa4f4242a405769165f6b6c4b11
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 - `netmaker` generates C# code files for the .NET language binding
9 - `climaker` (the old codemaker for .NET Framework) is in module `cli_ure`
11 Some of the code is re-used by the skeletonmakers in module `unodevtools`.
13 Note the different terminology used by cppumaker vs. gbuild for the three
14 variants that can be generated by cppumaker for some of the inline functions:
16     cppumaker switch: -L;    cpputype.cxx: light;          gbuild: normal;
17     cppumaker switch: none;  cpputype.cxx: normal;         gbuild: bootstrap;
18     cppumaker switch: -C;    cpputype.cxx: comprehensive;  gbuild: comprehensive;
20 which can be a source of confusion.