Skip to content

Commit 2c07412

Browse files
authored
Add basic SwiftPM manifest file
1 parent 81119d0 commit 2c07412

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Package.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
)
13+
]
14+
)

0 commit comments

Comments
 (0)