16 lines
375 B
Swift
16 lines
375 B
Swift
// swift-tools-version:5.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FSPagerView",
|
|
platforms: [
|
|
.iOS(.v9)
|
|
],
|
|
products: [
|
|
.library(name: "FSPagerView", targets: ["FSPagerView"]),
|
|
],
|
|
targets: [
|
|
.target(name: "FSPagerView", path: "Sources", exclude: ["FSPagerViewObjcCompat.h", "FSPagerViewObjcCompat.m"]),
|
|
]
|
|
)
|