Skip to content

Commit 01f9d34

Browse files
committed
Fix the macOS deployment target
1 parent 4ddfd5f commit 01f9d34

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

Example/SDWebImageWebPCoderExample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
"$(inherited)",
397397
"@executable_path/../Frameworks",
398398
);
399-
MACOSX_DEPLOYMENT_TARGET = 11.0;
399+
MACOSX_DEPLOYMENT_TARGET = 10.11;
400400
MARKETING_VERSION = 1.0;
401401
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
402402
MTL_FAST_MATH = YES;
@@ -429,7 +429,7 @@
429429
"$(inherited)",
430430
"@executable_path/../Frameworks",
431431
);
432-
MACOSX_DEPLOYMENT_TARGET = 11.0;
432+
MACOSX_DEPLOYMENT_TARGET = 10.11;
433433
MARKETING_VERSION = 1.0;
434434
MTL_FAST_MATH = YES;
435435
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.SDWebImageWebPCoderExample-macOS";

Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ target 'SDWebImageWebPCoderExample' do
1111
end
1212

1313
target 'SDWebImageWebPCoderExample-macOS' do
14-
platform :osx, '11.0'
14+
platform :osx, '10.11'
1515
project example_project_path
1616
pod 'SDWebImageWebPCoder', :path => './'
1717
end
@@ -24,7 +24,7 @@ target 'SDWebImageWebPCoderTests' do
2424
end
2525

2626
target 'SDWebImageWebPCoderTests-macOS' do
27-
platform :osx, '11.0'
27+
platform :osx, '10.11'
2828
project test_project_path
2929
pod 'Expecta'
3030
pod 'SDWebImageWebPCoder', :path => './'

Tests/SDWebImageWebPCoderTests.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
CURRENT_PROJECT_VERSION = 1;
339339
GENERATE_INFOPLIST_FILE = YES;
340340
INFOPLIST_FILE = Info.plist;
341-
MACOSX_DEPLOYMENT_TARGET = 13.0;
341+
MACOSX_DEPLOYMENT_TARGET = 10.11;
342342
MARKETING_VERSION = 1.0;
343343
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
344344
MTL_FAST_MATH = YES;
@@ -359,7 +359,7 @@
359359
CURRENT_PROJECT_VERSION = 1;
360360
GENERATE_INFOPLIST_FILE = YES;
361361
INFOPLIST_FILE = Info.plist;
362-
MACOSX_DEPLOYMENT_TARGET = 13.0;
362+
MACOSX_DEPLOYMENT_TARGET = 10.11;
363363
MARKETING_VERSION = 1.0;
364364
MTL_FAST_MATH = YES;
365365
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.SDWebImageWebPCoderTests-macOS";
@@ -534,6 +534,7 @@
534534
);
535535
INFOPLIST_FILE = Info.plist;
536536
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
537+
MACOSX_DEPLOYMENT_TARGET = 10.11;
537538
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoderTests;
538539
PRODUCT_NAME = "$(TARGET_NAME)";
539540
};
@@ -545,6 +546,7 @@
545546
buildSettings = {
546547
INFOPLIST_FILE = Info.plist;
547548
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
549+
MACOSX_DEPLOYMENT_TARGET = 10.11;
548550
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoderTests;
549551
PRODUCT_NAME = "$(TARGET_NAME)";
550552
};

0 commit comments

Comments
 (0)