summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-11-22 15:01:51 +0200
committerTor Lillqvist <tml@collabora.com>2013-11-22 15:19:12 +0200
commit542dee77d483e10fcd540abc04cee9fa727b6c63 (patch)
treee7726146e2d68a4ff0353e932799153095772401
parent86c12faeb68b1e952118436c00f55a19b33866fc (diff)
Schemes don't exist in a clean tree, so use targets
The intent hopefully is that the MobileLibreOffice project should be buildable in a freshly cloned or otherwise clean tree, where Xcode has not been used interactively (which automatically creates a scheme for each target, it seems). Change-Id: I690513ecf54bb824dd3c3b0ef1735cc5cdff6d60
-rw-r--r--ios/CustomTarget_MobileLibreOffice_app.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/ios/CustomTarget_MobileLibreOffice_app.mk b/ios/CustomTarget_MobileLibreOffice_app.mk
index 76b3e75a9f52..404d7978fb71 100644
--- a/ios/CustomTarget_MobileLibreOffice_app.mk
+++ b/ios/CustomTarget_MobileLibreOffice_app.mk
@@ -15,7 +15,8 @@ BUILDID :=$(shell cd $(SRCDIR) && git log -1 --format=%H)
#- Macros ---------------------------------------------------------------------
define MobileLibreOfficeXcodeBuild
- CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -scheme MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) $(if $(verbose)$(VERBOSE),,>/dev/null)
+ CC=;xcodebuild -project shared/ios_sharedlo.xcodeproj -target ios_sharedlo -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) $(if $(verbose)$(VERBOSE),,>/dev/null)
+ CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -target MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) $(if $(verbose)$(VERBOSE),,>/dev/null)
endef
#- Targets --------------------------------------------------------------------