summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-09-28 13:49:31 +0200
committerjan Iversen <jani@libreoffice.org>2017-09-28 13:50:39 +0200
commita7e4417c630cc672e3d5e3c0638a6a468d38ad95 (patch)
treedc4a870d0722581e8d0d22c81bf634c96093a65f /ios
parentd2cf510af2ab8a03e343b03773f0cfcc1c71cd22 (diff)
iOS, xcodebuild corrections.
Changed target of builds. Change-Id: Ieb1da70f0ec2e636e571c3ad69243b26bb726487
Diffstat (limited to 'ios')
-rw-r--r--ios/CustomTarget_iOS.mk19
1 files changed, 11 insertions, 8 deletions
diff --git a/ios/CustomTarget_iOS.mk b/ios/CustomTarget_iOS.mk
index ff05a7b9bebc..bae73aae9df7 100644
--- a/ios/CustomTarget_iOS.mk
+++ b/ios/CustomTarget_iOS.mk
@@ -10,20 +10,20 @@ IOSGEN := $(SRCDIR)/ios/generated
IOSRES := $(IOSGEN)/resources
IOSKITXC := $(BUILDDIR)/ios/loKit.xcconfig
IOSAPPXC := $(BUILDDIR)/ios/loApp.xcconfig
-IOSKITPRJ := $(SRCDIR)/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj/project.pbxproj
-IOSAPPPRJ := $(SRCDIR)/ios/LibreOfficeLight/LibreOfficeLight.xcodeproj/project.pbxproj
+IOSKITPRJ := $(SRCDIR)/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj
+IOSAPPPRJ := $(SRCDIR)/ios/LibreOfficeLight/LibreOfficeLight.xcodeproj
IOSAPP := $(INSTDIR)/LibreOfficeLight.app
ifeq ($(ENABLE_DEBUG),TRUE)
-IOSKIT := $(IOSGEN)/iOSkit_$(CPUNAME)_debug.a
+IOSKIT := iOSkit_$(CPUNAME)_debug.a
else
-IOSKIT := $(IOSGEN)/iOSkit_$(CPUNAME).a
+IOSKIT := iOSkit_$(CPUNAME).a
endif
#- Top level -----------------------------------------------------------------
$(eval $(call gb_CustomTarget_CustomTarget,ios/ios))
-$(call gb_CustomTarget_get_target,ios/ios): $(IOSKIT)
+$(call gb_CustomTarget_get_target,ios/ios): $(IOSGEN)/$(IOSKIT)
#- Generate xcconfig files ---------------------------------------------------
@@ -139,25 +139,28 @@ endif
#- build ---------------------------------------------------------------------
-$(IOSKIT): $(IOSKITPRJ) iosCopySetup
+$(IOSGEN)/$(IOSKIT): $(IOSKITPRJ)/project.pbxproj iosCopySetup
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),APP,2)
+ mkdir -p $(WORKDIR)/ios
CC=; \
$(call gb_Helper_print_on_error, \
xcodebuild \
-xcconfig $(IOSKITXC) \
-project $(IOSKITPRJ) \
- -target $(IOSKIT) \
+ -target iOS_LO_Kit.a \
-sdk $(XCODEBUILD_SDK) \
-arch $(XCODE_ARCHS) \
-configuration $(if $(ENABLE_DEBUG),Debug,Release) \
build \
, $(WORKDIR)/ios/build.log \
)
+ cp iOS_LO_kit.a $(IOSGEN)/$(IOSKIT)
-$(IOSAPP): $(IOSAPPPRJ) $(IOSKIT)
+$(INSTDIR)/$(IOSAPP): $(IOSAPPPRJ)/project.pbxproj $(IOSGEN)/$(IOSKIT)
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),APP,2)
+ mkdir -p $(WORKDIR)/ios
CC=; \
$(call gb_Helper_print_on_error, \
xcodebuild \