diff options
author | RMZeroFour <ritobroto04@gmail.com> | 2024-05-30 14:28:57 +0530 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2024-06-12 18:48:07 +0200 |
commit | 6538b3b09cf5a3c8fc6d9882dc817afd59c3599c (patch) | |
tree | 76f701da18be68bb2ef3f0b8e4199788300df1eb /net_ure/Module_net_ure.mk | |
parent | 5ad110499343d2ec0469e605168c1c1cd129d0e7 (diff) |
.NET Bindings: Add DotnetLibrary class to gbuild
This commit adds the DotnetLibrary gbuild class to build a .NET assembly
using the .NET SDK.
Also adds an option to enable or disable building .NET components with
--enable-dotnet (default) and --disable-dotnet to the autogen script.
Also adds a net_ure/ directory for the updated .NET bindings, currently
consisting of the net_basetypes library.
Change-Id: I9256387a2463ff8476deee85d886c6b3dce8257b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166380
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'net_ure/Module_net_ure.mk')
-rw-r--r-- | net_ure/Module_net_ure.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net_ure/Module_net_ure.mk b/net_ure/Module_net_ure.mk new file mode 100644 index 000000000000..2d939717e367 --- /dev/null +++ b/net_ure/Module_net_ure.mk @@ -0,0 +1,17 @@ +# -*- 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/. + +$(eval $(call gb_Module_Module,net_ure)) + +ifeq ($(ENABLE_DOTNET),TRUE) +$(eval $(call gb_Module_add_targets,net_ure,\ + DotnetLibrary_net_basetypes \ +)) +endif + +# vim: set noet sw=4 ts=4: |