mirror of
https://github.com/zhigang1992/Kingfisher.git
synced 2026-01-12 09:04:37 +08:00
16 lines
369 B
Swift
16 lines
369 B
Swift
// swift-tools-version:5.1
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Kingfisher",
|
|
platforms: [.iOS(.v12), .macOS(.v10_14), .tvOS(.v12), .watchOS(.v5)],
|
|
products: [
|
|
.library(name: "Kingfisher", targets: ["Kingfisher"])
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Kingfisher",
|
|
path: "Sources"
|
|
)
|
|
]
|
|
) |