diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /odk/README | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'odk/README')
-rw-r--r-- | odk/README | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/odk/README b/odk/README new file mode 100644 index 000000000..4370e63e5 --- /dev/null +++ b/odk/README @@ -0,0 +1,27 @@ +Office development kit - implements the first step on the way to the LibreOffice SDK tarball. + +Part of the SDK; to build you need to add --enable-odk. + + +Testing the examples: +===================== + +* Go to instdir/sdk (Don't try directly in odk/) + +* See <https://api.libreoffice.org/docs/install.html> how to set up the SDK. + +** When asked about it during configuration, tell the SDK to do automatic + deployment of the example extensions that get built. + +* In a shell set up for SDK development, build (calling "make") and test + (following the instructions given at the end of each "make" invocation) each + of the SDK's examples/ sub-directories. + +** An example script to build (though not test) the various examples in batch + mode is + + find examples \( -type d -name nativelib -prune \) -o \ + \( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \) + + (Note that one of the example extensions asks you to accept an example + license on stdin during deployment.) |