diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-30 10:29:05 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-30 10:30:45 +0200 |
commit | dd5347ef29686cc02928243b571f11444ed4e6b9 (patch) | |
tree | 49c80b0cdfd0fe9b85560fd75e322cfd0fc79bc4 /ios | |
parent | 542a3291005dc1db011c76f437d5e0b945fa726e (diff) |
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.mk | 3 |
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 -------------------------------------------------------------------- |