diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-02-20 18:03:54 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-02-20 18:17:29 +0200 |
commit | c450d9645d1a06cf00c65272471bc7d03f28f353 (patch) | |
tree | 57fffd5556934366f7bcf67c1db6a0f79ad33c1b /svx/Module_svx.mk | |
parent | 30063974396f43ef30bc6b81f0260d3fb09d17cd (diff) |
No gengal.bin for iOS
Like any of our executables using <sal/main.h>, it doesn't even build
for iOS anyway using the current <sal/main.h> anyway, as there is no
main() ;) Executables for iOS (i.e. unit testers, and some eventual
end.userish apps) will be handled "semi-manually" in some yet to be
worked out fashion.
Makes no sense for Android either, but I'm lazy.
Diffstat (limited to 'svx/Module_svx.mk')
-rw-r--r-- | svx/Module_svx.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/svx/Module_svx.mk b/svx/Module_svx.mk index f9999ad4630a..acfb7885f74e 100644 --- a/svx/Module_svx.mk +++ b/svx/Module_svx.mk @@ -39,9 +39,14 @@ $(eval $(call gb_Module_add_targets,svx,\ Package_globlmn_hrc \ Package_inc \ Package_sdi \ - Package_gengal \ +)) + +ifneq ($(OS),IOS) +$(eval $(call gb_Module_add_targets,svx,\ Executable_gengal.bin \ + Package_gengal \ )) +endif $(eval $(call gb_Module_add_subsequentcheck_targets,svx,\ JunitTest_svx_unoapi \ |