diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-03 01:46:06 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-03 01:47:59 +0200 |
commit | 19a080540f68abd8800b15b140349b1318d33073 (patch) | |
tree | cc2a1d98bf5501a1427c5282629df784695eddba /ios | |
parent | 06b58a702f7751bbe997f33603af18767b9773f0 (diff) |
The Viewer executable, not just the app bundle, depends on all the libraries
Change-Id: If85d7c8db75dbcd8316193e06b7c337c52216e0c
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_Viewer_app.mk | 3 | ||||
-rw-r--r-- | ios/Executable_Viewer.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ios/CustomTarget_Viewer_app.mk b/ios/CustomTarget_Viewer_app.mk index d2ccf34e82a2..7640a14fd621 100644 --- a/ios/CustomTarget_Viewer_app.mk +++ b/ios/CustomTarget_Viewer_app.mk @@ -134,8 +134,7 @@ $(SCRIPT_OUTPUT_FILE_0) : $(call gb_Executable_get_target,Viewer) else # When run just from the command line, we don't have any app bundle to # copy or move the executable to. So do nothing. -$(call gb_CustomTarget_get_target,ios/Viewer_app) : $(call gb_Executable_get_target,Viewer) \ - $(call gb_Postprocess_get_target,AllModulesButInstsetNative) +$(call gb_CustomTarget_get_target,ios/Viewer_app) : $(call gb_Executable_get_target,Viewer) $(call gb_CustomTarget_get_clean_target,ios/Viewer_app) : $(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),APP,2) diff --git a/ios/Executable_Viewer.mk b/ios/Executable_Viewer.mk index edde8522e25d..bd462d54ed51 100644 --- a/ios/Executable_Viewer.mk +++ b/ios/Executable_Viewer.mk @@ -27,4 +27,6 @@ $(eval $(call gb_Executable_add_objcxxobjects,Viewer,\ ios/experimental/Viewer/Viewer/main \ )) +$(call gb_Executable_get_target,Viewer) : $(call gb_Postprocess_get_target,AllModulesButInstsetNative) + # vim: set ts=4 sw=4 et: |