tdf#153972 Fix color filter when cells have no content
[LibreOffice.git] / odk / README.md
blobee54679bb13cd0936308066d05c7fd93e3148937
1 # Office Development Kit (odk)
3 Office development kit (`odk`) - implements the first step on the way to the LibreOffice SDK
4 tarball.
6 Part of the SDK; to build you need to add `--enable-odk`.
9 ## Testing the Examples:
11 * Go to `instdir/sdk` (Don't try directly in `odk/`)
13 * See <https://api.libreoffice.org/docs/install.html> how to set up the SDK.
15     * When asked about it during configuration, tell the SDK to do automatic
16       deployment of the example extensions that get built.
18 * In a shell set up for SDK development, build (calling `make`) and test
19   (following the instructions given at the end of each `make` invocation) each
20   of the SDK's `examples/` sub-directories.
22     * An example script to build (though not test) the various examples in batch
23       mode is
25         `find examples \( -type d -name nativelib -prune \) -o \`
26         `\( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \)`
28         (Note that one of the example extensions asks you to accept an example
29         license on stdin during deployment.)