office-gobmx/odk
Julien Nabet e596785580 Typo: pargraph->paragraph
Change-Id: I7749951d829eb8aaeacdca0fd66d41cf9d6a1613
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98251
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2020-07-07 17:10:03 +02:00
..
config Move all public Java classes to libreoffice.jar 2020-05-06 14:48:21 +02:00
docs Move all public Java classes to libreoffice.jar 2020-05-06 14:48:21 +02:00
examples Typo: pargraph->paragraph 2020-07-07 17:10:03 +02:00
qa/checkapi
settings odk: fix for change directory in complextoolbarcontrols sample 2019-11-01 00:27:35 +01:00
source loplugin:fakebool (clang-cl) 2019-11-19 21:34:30 +01:00
util
build-examples_common.mk Avoid $(shell $(gb_MKTEMP)) 2020-01-06 17:30:26 +01:00
CppunitTest_odk_checkapi.mk
CustomTarget_allheaders.mk GBUILD_TRACE, support for finding out where the build time is spent 2020-02-16 14:49:45 +01:00
CustomTarget_build-examples.mk
CustomTarget_build-examples_java.mk
CustomTarget_check.mk GBUILD_TRACE, support for finding out where the build time is spent 2020-02-16 14:49:45 +01:00
CustomTarget_classes.mk
CustomTarget_config_win.mk
CustomTarget_doxygen.mk GBUILD_TRACE, support for finding out where the build time is spent 2020-02-16 14:49:45 +01:00
CustomTarget_html.mk GBUILD_TRACE, support for finding out where the build time is spent 2020-02-16 14:49:45 +01:00
CustomTarget_javadoc.mk Move all public Java classes to libreoffice.jar 2020-05-06 14:48:21 +02:00
CustomTarget_settings.mk
CustomTarget_unowinreg.mk
Executable_unoapploader.mk
GeneratedPackage_odk_doxygen.mk
GeneratedPackage_odk_javadoc.mk Change SDK javaodc from static Package to dynamic GeneratedPackage 2014-02-25 15:51:21 +01:00
GeneratedPackage_uno_loader_classes.mk Fixes for cross-compilation on OS X (to iOS) 2013-09-23 15:38:10 +03:00
index.html Bump copyright year to 2020 2020-01-02 07:05:24 +01:00
index_online.html Bump copyright year to 2020 2020-01-02 07:05:24 +01:00
Library_unowinreg.mk
Makefile convert odk to gbuild and add to tail_build 2013-02-23 21:39:52 +00:00
Module_odk.mk
Package_cli.mk
Package_config.mk
Package_config_win.mk
Package_docs.mk
Package_examples.mk java: remove unused interfaces 2014-08-13 09:44:17 +02:00
Package_html.mk
Package_odk_headers.mk rtl/stringconcat.hxx is not part of the URE interface 2019-10-12 15:33:16 +02:00
Package_odk_headers_generated.mk
Package_settings.mk
Package_settings_generated.mk
Package_share_readme.mk
Package_share_readme_generated.mk
Package_unowinreg.mk
README

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.)