Skip to content

Commit 4c18f99

Browse files
committed
fix
1 parent 234c13a commit 4c18f99

3 files changed

Lines changed: 50 additions & 2 deletions

File tree

OpenDocumentReader.xcodeproj/project.pbxproj

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,18 @@
596596
);
597597
LIBRARY_SEARCH_PATHS = "$(inherited)";
598598
MARKETING_VERSION = 1.25;
599+
OTHER_LDFLAGS = (
600+
"$(inherited)",
601+
"-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk",
602+
"-mios-version-min=14.0",
603+
"-fembed-bitcode",
604+
"-arch",
605+
x86_64,
606+
"-lpugixml",
607+
"-lcryptopp",
608+
"-lminiz",
609+
"-lodr-static",
610+
);
599611
PRODUCT_BUNDLE_IDENTIFIER = at.tomtasche.reader.lite1;
600612
PRODUCT_NAME = "$(BUNDLE_DISPLAY_NAME)";
601613
SWIFT_OBJC_BRIDGING_HEADER = OpenDocumentReader/BridgingHeader.h;
@@ -686,6 +698,18 @@
686698
);
687699
LIBRARY_SEARCH_PATHS = "$(inherited)";
688700
MARKETING_VERSION = 1.25;
701+
OTHER_LDFLAGS = (
702+
"$(inherited)",
703+
"-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk",
704+
"-mios-version-min=14.0",
705+
"-fembed-bitcode",
706+
"-arch",
707+
x86_64,
708+
"-lpugixml",
709+
"-lcryptopp",
710+
"-lminiz",
711+
"-lodr-static",
712+
);
689713
PRODUCT_BUNDLE_IDENTIFIER = at.tomtasche.reader.lite1;
690714
PRODUCT_NAME = "$(BUNDLE_DISPLAY_NAME)";
691715
SWIFT_OBJC_BRIDGING_HEADER = OpenDocumentReader/BridgingHeader.h;
@@ -928,6 +952,18 @@
928952
);
929953
LIBRARY_SEARCH_PATHS = "$(inherited)";
930954
MARKETING_VERSION = 1.25;
955+
OTHER_LDFLAGS = (
956+
"$(inherited)",
957+
"-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk",
958+
"-mios-version-min=14.0",
959+
"-fembed-bitcode",
960+
"-arch",
961+
x86_64,
962+
"-lpugixml",
963+
"-lcryptopp",
964+
"-lminiz",
965+
"-lodr-static",
966+
);
931967
PRODUCT_BUNDLE_IDENTIFIER = "at.tomtasche.reader$(BUNDLE_ID_SUFFIX)";
932968
PRODUCT_NAME = "$(BUNDLE_DISPLAY_NAME)";
933969
SWIFT_OBJC_BRIDGING_HEADER = OpenDocumentReader/BridgingHeader.h;
@@ -959,6 +995,18 @@
959995
);
960996
LIBRARY_SEARCH_PATHS = "$(inherited)";
961997
MARKETING_VERSION = 1.25;
998+
OTHER_LDFLAGS = (
999+
"$(inherited)",
1000+
"-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk",
1001+
"-mios-version-min=14.0",
1002+
"-fembed-bitcode",
1003+
"-arch",
1004+
x86_64,
1005+
"-lpugixml",
1006+
"-lcryptopp",
1007+
"-lminiz",
1008+
"-lodr-static",
1009+
);
9621010
PRODUCT_BUNDLE_IDENTIFIER = "at.tomtasche.reader$(BUNDLE_ID_SUFFIX)";
9631011
PRODUCT_NAME = "$(BUNDLE_DISPLAY_NAME)";
9641012
SWIFT_OBJC_BRIDGING_HEADER = OpenDocumentReader/BridgingHeader.h;

build-device.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
55
cd $DIR
66

7-
conan install . --profile ios --build missing
7+
CONAN_REVISIONS_ENABLED=1 conan install . --profile ios --build missing

build-simulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
55
cd $DIR
66

7-
conan install . --profile ios-simulator --build missing
7+
CONAN_REVISIONS_ENABLED=1 conan install . --profile ios-simulator --build missing

0 commit comments

Comments
 (0)