l10ntools: remove unused srclex
[LibreOffice.git] / odk / README
blob5a8dd16f7bdd1dd1904d0b258338f9134a48a41f
1 Office development kit - implements the first step on the way to the LibreOffice SDK tarball.
3 Part of the SDK; to build you need to add --enable-odk.
6 Testing the examples:
7 =====================
9 * See <https://api.libreoffice.org/docs/install.html> how to set up the SDK.
11 ** When asked about it during configuration, tell the SDK to do automatic
12    deployment of the example extensions that get built.
14 * In a shell set up for SDK development, build (calling "make") and test
15   (following the instructions given at the end of each "make" invocation) each
16   of the SDK's examples/ sub-directories.
18 ** An example script to build (though not test) the various examples in batch
19    mode is
21      find examples \( -type d -name nativelib -prune \) -o \
22       \( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \)
24    (Note that one of the example extensions asks you to accept an example
25    license on stdin during deployment.)