Fix the platform limit in SwiftPM
This commit is contained in:
parent
0da097c43e
commit
dc62982bbb
|
@ -6,7 +6,7 @@ import PackageDescription
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "SDWebImageWebPCoder",
|
name: "SDWebImageWebPCoder",
|
||||||
platforms: [
|
platforms: [
|
||||||
.macOS(.v10_13), .iOS(.v8), .tvOS(.v10)
|
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
|
||||||
],
|
],
|
||||||
products: [
|
products: [
|
||||||
// Products define the executables and libraries produced by a package, and make them visible to other packages.
|
// Products define the executables and libraries produced by a package, and make them visible to other packages.
|
||||||
|
|
Loading…
Reference in New Issue