diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-11-22 15:01:51 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-11-22 15:19:12 +0200 |
commit | 542dee77d483e10fcd540abc04cee9fa727b6c63 (patch) | |
tree | e7726146e2d68a4ff0353e932799153095772401 /ios | |
parent | 86c12faeb68b1e952118436c00f55a19b33866fc (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
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_MobileLibreOffice_app.mk | 3 |
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 -------------------------------------------------------------------- |