forked from amazingfate/loongoffice
Using only the system spell checker (through MacOSXSpell) is what we have been doing anyway. Do not build the hunspell or mythes externals for iOS. Do not build the lnth or spell components for iOS. Change-Id: I2e2abc268d7719e540072e5daff3f7960e04ed27 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86172 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86174 Tested-by: Jenkins
24 lines
689 B
Makefile
24 lines
689 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,lingucomponent))
|
|
|
|
$(eval $(call gb_Module_add_targets,lingucomponent,\
|
|
Library_guesslang \
|
|
Library_hyphen \
|
|
$(if $(filter-out iOS,$(OS)),Library_lnth) \
|
|
$(if $(filter iOS MACOSX,$(OS)),Library_MacOSXSpell) \
|
|
$(if $(filter-out iOS,$(OS)),Library_spell) \
|
|
StaticLibrary_ulingu \
|
|
Library_numbertext \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|