eb15ac837e
From some reason it does not work, so let's do the same we are doing on iOS; at least for now. Change-Id: I915f8683a112548fc3defc1114f9dce3aa7be30e Reviewed-on: https://gerrit.libreoffice.org/84067 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/84204 Tested-by: Jenkins Reviewed-by: Jan Holesovsky <kendy@collabora.com>
25 lines
601 B
Makefile
25 lines
601 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,ios))
|
|
|
|
ifeq ($(OS),iOS)
|
|
|
|
$(eval $(call gb_Module_add_targets,ios,\
|
|
CustomTarget_iOS_setup \
|
|
))
|
|
|
|
ifneq ($(ENABLE_IOS_LIBREOFFICELIGHT_APP),)
|
|
$(eval $(call gb_Module_add_targets,ios,\
|
|
CustomTarget_iOS_link \
|
|
))
|
|
|
|
endif
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|