File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 - name : Install pods
1717 run : pod install
1818 - name : Run build.sh
19- run : bash build.sh
19+ run : bash build-simulator .sh
2020 - name : Build
2121 run : |
2222 xcodebuild clean build -workspace OpenDocumentReader.xcworkspace -scheme "${scheme}" -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
Original file line number Diff line number Diff line change @@ -3,8 +3,4 @@ cmake_minimum_required(VERSION 3.12.4)
33option (ODR_TEST "" OFF )
44set (ODR_TEST OFF )
55
6- # set both to ON for simulator builds, off for devices
7- option (DISABLE_ASM "" OFF )
8- set (DISABLE_ASM OFF )
9-
106add_subdirectory (OpenDocument.core )
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ It's Android's first OpenOffice Document Reader... for iOS!
44## Setup
551 . run "git submodule update --init --recursive"
662 . run "pod install"
7- 3 . open workspace in Xcode
7+ 3 . run "bash build-simulator.sh" or "bash build-device.sh"
8+ 4 . open workspace in Xcode
File renamed without changes.
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ rm -rf build
4+
5+ mkdir build/
6+ cd build/
7+ cmake -G " Xcode" -DCMAKE_TOOLCHAIN_FILE=../ios-cmake/ios.toolchain.cmake ../ -DDISABLE_ASM=ON
8+ cd ../
You can’t perform that action at this time.
0 commit comments