Skip to content

Commit 49330ef

Browse files
Merge pull request mischa-hildebrand#21 from Jeehut/master
Add support for SwiftPM-based dependency managers
2 parents 81119d0 + 2a46221 commit 49330ef

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Package.swift

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// swift-tools-version:4.2
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "AlignedCollectionViewFlowLayout",
6+
products: [
7+
.library(name: "AlignedCollectionViewFlowLayout", targets: ["AlignedCollectionViewFlowLayout"])
8+
],
9+
targets: [
10+
.target(
11+
name: "AlignedCollectionViewFlowLayout",
12+
path: "AlignedCollectionViewFlowLayout"
13+
)
14+
]
15+
)

0 commit comments

Comments
 (0)