Skip to content

Commit 45bf066

Browse files
TwoDollarsEsqlouoso
authored andcommitted
Adds Package.swift
1 parent 25a56e8 commit 45bf066

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Package.swift

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// swift-tools-version:5.0
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "StackViewController",
7+
platforms: [.iOS(.v9)],
8+
products: [
9+
.library(
10+
name: "StackViewController",
11+
targets: ["StackViewController"]
12+
)
13+
],
14+
targets: [
15+
.target(
16+
name: "StackViewController",
17+
path: "StackViewController"
18+
),
19+
.testTarget(
20+
name: "StackViewControllerTests",
21+
dependencies: ["StackViewController"],
22+
path: "StackViewControllerTests"
23+
)
24+
]
25+
)

0 commit comments

Comments
 (0)