forked from apptekstudios/ASCollectionView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
20 lines (18 loc) · 971 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(name: "ASCollectionView",
platforms: [.iOS(.v11)],
products: [// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(name: "ASCollectionView",
targets: ["ASCollectionView"]),
.library(name: "ASCollectionViewDynamic", type: .dynamic, targets: ["ASCollectionView"]),
],
dependencies: [
.package(url: "https://github.com/ra1028/DifferenceKit", .upToNextMajor(from: Version(1, 1, 5)))
],
targets: [
.target(name: "ASCollectionView",
dependencies: ["DifferenceKit"]),
]
)