af0042ba65
that's what the check for creating the tool used already (Module_codemaker.mk), while the targets using the tool only was behind a ENABLE_DOTNET check. fixes the android CI builds Change-Id: Ie859a6409bb523926a619e87b693ec4c17a875cb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169512 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Jenkins
21 lines
653 B
Makefile
21 lines
653 B
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/.
|
|
|
|
$(eval $(call gb_Module_Module,net_ure))
|
|
|
|
ifeq ($(ENABLE_DOTNET)_$(filter ODK,$(BUILD_TYPE)),TRUE_ODK)
|
|
$(eval $(call gb_Module_add_targets,net_ure,\
|
|
CustomTarget_net_uretypes \
|
|
CustomTarget_net_oootypes \
|
|
DotnetLibrary_net_basetypes \
|
|
DotnetLibrary_net_uretypes \
|
|
DotnetLibrary_net_oootypes \
|
|
))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|