diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-14 14:31:25 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-14 17:21:19 +0300 |
commit | 0b6fb1f45a179e94bb39f49dd8f245812d753113 (patch) | |
tree | 5e697160e3c5e1cfa4a11057b2dd72c77f49f83d /i18npool/Executable_gendict.mk | |
parent | c0f2dc1347cfbc121408959531998b217cd1c617 (diff) |
Put the dict_ja and _zh data in files instead of code for iOS
Map the file(s) into memory on demand. The executable file of an app
needs to be as small as possible. Including additional data files in
an app bundle is fine.
Change-Id: Ife9bfe99a2cf0473d459f38f50dfa3304b39e282
Diffstat (limited to 'i18npool/Executable_gendict.mk')
-rw-r--r-- | i18npool/Executable_gendict.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/i18npool/Executable_gendict.mk b/i18npool/Executable_gendict.mk index a738f64e0666..69230cf52c07 100644 --- a/i18npool/Executable_gendict.mk +++ b/i18npool/Executable_gendict.mk @@ -14,6 +14,14 @@ $(eval $(call gb_Executable_use_libraries,gendict,\ $(gb_UWINAPI) \ )) +ifeq ($(gb_Side),build) +ifneq ($(shell grep OS=IOS $(BUILDDIR)/config_host.mk),) +$(eval $(call gb_Executable_add_cxxflags,gendict,\ + -DDICT_JA_ZH_IN_DATAFILE \ +)) +endif +endif + $(eval $(call gb_Executable_add_exception_objects,gendict,\ i18npool/source/breakiterator/gendict \ )) |