2024-05-30 03:58:57 -05:00
|
|
|
# -*- 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))
|
|
|
|
|
2024-06-25 06:05:34 -05:00
|
|
|
ifeq ($(ENABLE_DOTNET)_$(filter ODK,$(BUILD_TYPE)),TRUE_ODK)
|
2024-05-30 03:58:57 -05:00
|
|
|
$(eval $(call gb_Module_add_targets,net_ure,\
|
2024-09-02 14:28:46 -05:00
|
|
|
Library_net_bootstrap \
|
2024-06-12 03:26:05 -05:00
|
|
|
CustomTarget_net_uretypes \
|
|
|
|
CustomTarget_net_oootypes \
|
2024-05-30 03:58:57 -05:00
|
|
|
DotnetLibrary_net_basetypes \
|
2024-06-12 03:26:05 -05:00
|
|
|
DotnetLibrary_net_uretypes \
|
|
|
|
DotnetLibrary_net_oootypes \
|
2024-09-02 14:28:46 -05:00
|
|
|
DotnetLibrary_net_bridge \
|
|
|
|
CustomTarget_net_nuget_pkg \
|
2024-07-27 10:49:52 -05:00
|
|
|
Package_net_basetypes \
|
|
|
|
Package_net_uretypes \
|
|
|
|
Package_net_oootypes \
|
2024-09-02 14:28:46 -05:00
|
|
|
Package_net_bridge \
|
|
|
|
Package_net_nuget_pkg \
|
|
|
|
Package_net_nuget_config \
|
2024-05-30 03:58:57 -05:00
|
|
|
))
|
2024-07-27 09:36:56 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,net_ure,\
|
|
|
|
DotnetTest_net_basetypes_tests \
|
|
|
|
))
|
2024-05-30 03:58:57 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|