diff options
author | jan Iversen <jani@libreoffice.org> | 2017-09-30 12:08:36 +0200 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2017-09-30 12:11:08 +0200 |
commit | 150e93dbb49b0d09dc17390004a6869e33cf1686 (patch) | |
tree | 605d9bba45c6c91bae4ab4ebddb92b3f71daa1d2 /ios | |
parent | d784dc4fd4e7b8b1f7468dd3fe1c952f8ab7037f (diff) |
iOS, changed library name
core/ios/generated will contain 3 libraries
libLibreOfficeKit_arm64.a ==> production link for iPad
libLibreOfficeKit_arm64_debug.a ==> debug link for iPad
libLibreOfficeKit_x86_64_debug.a ==> simulator link
Change-Id: Ic53883bfb796a3aea07101eebff6a8bd4ceef21f
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_iOS.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/CustomTarget_iOS.mk b/ios/CustomTarget_iOS.mk index 63f1fd98993f..46391e89eca3 100644 --- a/ios/CustomTarget_iOS.mk +++ b/ios/CustomTarget_iOS.mk @@ -14,9 +14,9 @@ IOSKITPRJ := $(SRCDIR)/ios/LibreOfficeKit/LibreOfficeKit.xcodeproj IOSAPPPRJ := $(SRCDIR)/ios/LibreOfficeLight/LibreOfficeLight.xcodeproj IOSAPP := $(INSTDIR)/LibreOfficeLight.app ifeq ($(ENABLE_DEBUG),TRUE) -IOSKIT := iOSkit_$(CPUNAME)_debug.a +IOSKIT := libLibreOfficeKit_$(CPUNAME)_debug.a else -IOSKIT := iOSkit_$(CPUNAME).a +IOSKIT := libLibreOfficeKit_$(CPUNAME).a endif |