Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
Updates sqlcipher.xcodeproj ARCH settings for iOS builds to $(ARCHS_S…
Browse files Browse the repository at this point in the history
…TANDARD) + armv7s
  • Loading branch information
billymeltdown committed Dec 3, 2014
1 parent adcd37c commit e1663ef
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions sqlcipher.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,14 @@
1DEB91F008733DB70010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
"ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
"ARCHS[sdk=iphoneos*]" = (
"$(ARCHS_STANDARD)",
armv7s,
);
"ARCHS[sdk=iphonesimulator*]" = (
"$(ARCHS_STANDARD)",
armv7s,
);
"ARCHS[sdk=macosx*]" = (
x86_64,
i386,
Expand All @@ -270,8 +276,14 @@
1DEB91F108733DB70010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
"ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
"ARCHS[sdk=iphoneos*]" = (
"$(ARCHS_STANDARD)",
armv7s,
);
"ARCHS[sdk=iphonesimulator*]" = (
"$(ARCHS_STANDARD)",
armv7s,
);
"ARCHS[sdk=macosx*]" = (
i386,
x86_64,
Expand Down

0 comments on commit e1663ef

Please sign in to comment.