lok: avoid ILibreOfficeKitNotifier null ptr de-reference on shutdown.
[LibreOffice.git] / odk / README
blob4370e63e594f2b2982b1ea197622504e6fc78fb9
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 * Go to instdir/sdk (Don't try directly in odk/)
11 * See <https://api.libreoffice.org/docs/install.html> how to set up the SDK.
13 ** When asked about it during configuration, tell the SDK to do automatic
14    deployment of the example extensions that get built.
16 * In a shell set up for SDK development, build (calling "make") and test
17   (following the instructions given at the end of each "make" invocation) each
18   of the SDK's examples/ sub-directories.
20 ** An example script to build (though not test) the various examples in batch
21    mode is
23      find examples \( -type d -name nativelib -prune \) -o \
24       \( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \)
26    (Note that one of the example extensions asks you to accept an example
27    license on stdin during deployment.)