1
0
Fork 0
libreoffice/odk
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00
..
config Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
docs Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
examples Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
qa/checkapi Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
settings Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
source Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
util Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
build-examples_common.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CppunitTest_odk_checkapi.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_allheaders.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_build-examples.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_build-examples_java.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_check.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_classes.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_config_win.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_doxygen.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_html.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_javadoc.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
CustomTarget_settings.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Executable_unoapploader.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
GeneratedPackage_odk_doxygen.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
GeneratedPackage_odk_javadoc.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
GeneratedPackage_uno_loader_classes.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
index.html Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
index_online.html Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Makefile Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Module_odk.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_cli.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_config.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_config_win.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_docs.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_examples.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_html.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_odk_headers.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_odk_headers_generated.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_scripts.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_settings.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_settings_generated.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_share_readme.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Package_share_readme_generated.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
README.md Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00

Office Development Kit (odk)

Office development kit (odk) - 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:

  • The easiest way on Linux and macOS is to run make odk.subsequentcheck

  • The way that also works on Windows is to 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.)