summaryrefslogtreecommitdiff
path: root/unoil
diff options
context:
space:
mode:
authorRMZeroFour <ritobroto04@gmail.com>2024-06-12 21:25:42 +0530
committerHossein <hossein@libreoffice.org>2024-06-22 00:11:16 +0200
commit4031659233958a5bf93ea86e8fe117fd0dd45c10 (patch)
tree335d3b07289b2c6d3009bf6bd09fb477ff234762 /unoil
parent89372e62454a72c6c400f00bfe3221bc0fe6d23e (diff)
.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>
Diffstat (limited to 'unoil')
-rw-r--r--unoil/Module_unoil.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/unoil/Module_unoil.mk b/unoil/Module_unoil.mk
index 23b15181437a..12d8122d981f 100644
--- a/unoil/Module_unoil.mk
+++ b/unoil/Module_unoil.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_Module_add_targets,unoil,\
))
endif
+ifeq ($(ENABLE_CLI),TRUE)
ifeq ($(COM),MSC)
ifneq ($(CPUNAME)_$(CROSS_COMPILING),AARCH64_TRUE)
$(eval $(call gb_Module_add_targets,unoil,\
@@ -23,5 +24,6 @@ $(eval $(call gb_Module_add_targets,unoil,\
))
endif
endif
+endif
# vim:set noet sw=4 ts=4: