office-gobmx/odk/Module_odk.mk
RMZeroFour 4031659233 .NET Bindings: Switch for old windows CLI bindings
This commit adds an --enable-cli/--disable-cli switch to autoconf to
control generation of the old CLI bindings (Windows only). It is
enabled by default, to not be a breaking change to users just yet.
Over time, when the old bindings are deprecated in favor of the new
.NET bindings, it could be set to disabled by default.

Change-Id: Ib60b372459cb0c735275ed17d004d037279357eb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168751
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
2024-06-22 00:11:16 +02:00

67 lines
1.6 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
include $(SRCDIR)/odk/build-examples_common.mk
$(eval $(call gb_Module_Module,odk))
$(eval $(call gb_Module_add_targets,odk,\
$(if $(DOXYGEN),\
CustomTarget_doxygen \
GeneratedPackage_odk_doxygen \
) \
CustomTarget_html \
CustomTarget_settings \
Executable_unoapploader \
Package_config \
Package_docs \
Package_html \
Package_examples \
Package_odk_headers \
Package_odk_headers_generated \
Package_settings \
Package_settings_generated \
Package_share_readme \
Package_share_readme_generated \
Package_scripts \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,odk,\
$(if $(ENABLE_CLI),$(if $(filter-out AARCH64_TRUE,$(CPUNAME)_$(CROSS_COMPILING)),Package_cli)) \
CustomTarget_config_win \
Package_config_win \
))
endif
ifneq ($(ENABLE_JAVA),)
$(eval $(call gb_Module_add_targets,odk,\
CustomTarget_classes \
CustomTarget_javadoc \
GeneratedPackage_odk_javadoc \
GeneratedPackage_uno_loader_classes \
))
endif
$(eval $(call gb_Module_add_check_targets,odk,\
CppunitTest_odk_checkapi \
CustomTarget_allheaders \
CustomTarget_check \
))
ifneq ($(filter $(OS),LINUX MACOSX),)
$(eval $(call gb_Module_add_subsequentcheck_targets,odk, \
CustomTarget_build-examples \
$(if $(ENABLE_JAVA),\
CustomTarget_build-examples_java \
) \
))
endif
# vim: set noet sw=4 ts=4: