diff options
author | RMZeroFour <ritobroto04@gmail.com> | 2024-06-12 21:25:42 +0530 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2024-06-22 00:11:16 +0200 |
commit | 4031659233958a5bf93ea86e8fe117fd0dd45c10 (patch) | |
tree | 335d3b07289b2c6d3009bf6bd09fb477ff234762 /cli_ure | |
parent | 89372e62454a72c6c400f00bfe3221bc0fe6d23e (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 'cli_ure')
-rw-r--r-- | cli_ure/Module_cli_ure.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli_ure/Module_cli_ure.mk b/cli_ure/Module_cli_ure.mk index ba18aecd1e4b..b1cdc680d9db 100644 --- a/cli_ure/Module_cli_ure.mk +++ b/cli_ure/Module_cli_ure.mk @@ -9,6 +9,7 @@ $(eval $(call gb_Module_Module,cli_ure)) +ifeq ($(ENABLE_CLI),TRUE) ifeq ($(COM),MSC) ifneq ($(CPUNAME)_$(CROSS_COMPILING),AARCH64_TRUE) $(eval $(call gb_Module_add_targets,cli_ure,\ @@ -24,5 +25,6 @@ $(eval $(call gb_Module_add_targets,cli_ure,\ )) endif endif +endif # vim: set noet sw=4 ts=4: |