summaryrefslogtreecommitdiffstats
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-30 10:29:05 +0200
committerTor Lillqvist <tml@collabora.com>2013-10-30 10:30:45 +0200
commitdd5347ef29686cc02928243b571f11444ed4e6b9 (patch)
tree49c80b0cdfd0fe9b85560fd75e322cfd0fc79bc4 /ios
parentC++11: new/delete replacement functions cannot be inline (diff)
downloadcore-dd5347ef29686cc02928243b571f11444ed4e6b9.tar.gz
core-dd5347ef29686cc02928243b571f11444ed4e6b9.zip
Build targets instead of a scheme which doesn't exist in a clean tree
If you try to build in a tree fresh from a clone, with no manual build in Xcode done, there will be no "schemes", so the xcodebuild will fail. Instead, build the "targets". Change-Id: Ie2689880e66d1aaa97661970d2060f5935cfcf17
Diffstat (limited to 'ios')
-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 e3e95c1b09ed..e2119a11a72d 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) >/dev/null
+ CC=;xcodebuild -project shared/ios_sharedlo.xcodeproj -target ios_sharedlo -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) >/dev/null
+ CC=;xcodebuild -project MobileLibreOffice/MobileLibreOffice.xcodeproj -target MobileLibreOffice -arch armv7 -configuration $(if $(ENABLE_DEBUG),Debug,Release) $(1) >/dev/null
endef
#- Targets --------------------------------------------------------------------