Skip to content

Commit c19d9d7

Browse files
Set the Minimum OS version target in the project file to fix carthage builds defaulting to only the latest OS sometimes
1 parent c91792a commit c19d9d7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ github "Exyte/SVGView"
115115

116116
# Requirements
117117

118-
* iOS 13+ / watchOS 13+ / tvOS 13+ / macOS 11+
118+
* iOS 14+ / watchOS 6+ / tvOS 14+ / macOS 11+
119119
* Xcode 11+
120120

121121
## Our other open source SwiftUI libraries

SVGView.xcodeproj/project.pbxproj

+6
Original file line numberDiff line numberDiff line change
@@ -734,15 +734,18 @@
734734
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
735735
GCC_WARN_UNUSED_FUNCTION = YES;
736736
GCC_WARN_UNUSED_VARIABLE = YES;
737+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
737738
MACOSX_DEPLOYMENT_TARGET = 11.0;
738739
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
739740
MTL_FAST_MATH = YES;
740741
ONLY_ACTIVE_ARCH = YES;
741742
SDKROOT = macosx;
742743
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
743744
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
745+
TVOS_DEPLOYMENT_TARGET = 14.0;
744746
VERSIONING_SYSTEM = "apple-generic";
745747
VERSION_INFO_PREFIX = "";
748+
WATCHOS_DEPLOYMENT_TARGET = 6.0;
746749
};
747750
name = Debug;
748751
};
@@ -792,14 +795,17 @@
792795
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
793796
GCC_WARN_UNUSED_FUNCTION = YES;
794797
GCC_WARN_UNUSED_VARIABLE = YES;
798+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
795799
MACOSX_DEPLOYMENT_TARGET = 11.0;
796800
MTL_ENABLE_DEBUG_INFO = NO;
797801
MTL_FAST_MATH = YES;
798802
SDKROOT = macosx;
799803
SWIFT_COMPILATION_MODE = wholemodule;
800804
SWIFT_OPTIMIZATION_LEVEL = "-O";
805+
TVOS_DEPLOYMENT_TARGET = 14.0;
801806
VERSIONING_SYSTEM = "apple-generic";
802807
VERSION_INFO_PREFIX = "";
808+
WATCHOS_DEPLOYMENT_TARGET = 6.0;
803809
};
804810
name = Release;
805811
};

0 commit comments

Comments
 (0)