UNPKG

436 BPlain TextView Raw
1// swift-tools-version:5.0
2import PackageDescription
3
4let package = Package(
5 name: "Lottie",
6 platforms: [.iOS(.v9)],
7 // platforms: [.iOS("9.0"), .macOS("10.10"), tvOS("9.0"), .watchOS("2.0")],
8 products: [
9 .library(name: "Lottie", targets: ["Lottie"])
10 ],
11 targets: [
12 .target(
13 name: "Lottie",
14 path: "lottie-swift/src",
15 exclude: ["Public/MacOS"]
16 )
17 ]
18)