Skip to content

Commit 0730998

Browse files
authored
Create Package.swift
1 parent a78533f commit 0730998

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Package.swift

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

0 commit comments

Comments
 (0)