RepositoryModule_build.mk | 1 + oox/Module_oox.mk | 5 +++++ 2 files changed, 6 insertions(+)
New commits: commit 5450f0a2417ab50ed41dd5b6e3265d9a8e534df9 Author: Michael Stahl <michael.st...@allotropia.de> AuthorDate: Wed Dec 14 18:04:08 2022 +0100 Commit: Thorsten Behrens <thorsten.behr...@allotropia.de> CommitDate: Wed Dec 14 20:43:40 2022 +0000 add oox to WITH_GALLERY_BUILD build side This is needed for WNT/ARM cross build since commit ce4c154e8b254f3bcd59ea46b3db4bd3d5a26058. Change-Id: I03cf9a2bb3bc505772b1bd2a2d96cd2b29cf14c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144170 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behr...@allotropia.de> diff --git a/RepositoryModule_build.mk b/RepositoryModule_build.mk index de906d605c53..2f3a06edd12a 100644 --- a/RepositoryModule_build.mk +++ b/RepositoryModule_build.mk @@ -70,6 +70,7 @@ $(eval $(call gb_Module_add_moduledirs,cross_toolset,\ framework \ linguistic \ officecfg \ + oox \ package \ postprocess \ sfx2 \ diff --git a/oox/Module_oox.mk b/oox/Module_oox.mk index 75ef85051f85..f868a126a61c 100644 --- a/oox/Module_oox.mk +++ b/oox/Module_oox.mk @@ -11,6 +11,10 @@ $(eval $(call gb_Module_Module,oox)) $(eval $(call gb_Module_add_targets,oox,\ CustomTarget_generated \ +)) + +ifeq ($(gb_Side),host) +$(eval $(call gb_Module_add_targets,oox,\ Library_oox \ Package_customshapes \ Package_generated \ @@ -31,5 +35,6 @@ $(eval $(call gb_Module_add_check_targets,oox,\ CppunitTest_oox_shape \ CppunitTest_oox_export \ )) +endif # vim: set noet sw=4 ts=4: