Skip to content

Commit

Permalink
Adds Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoDollarsEsq authored and louoso committed Jan 23, 2020
1 parent 25a56e8 commit 45bf066
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// swift-tools-version:5.0

import PackageDescription

let package = Package(
name: "StackViewController",
platforms: [.iOS(.v9)],
products: [
.library(
name: "StackViewController",
targets: ["StackViewController"]
)
],
targets: [
.target(
name: "StackViewController",
path: "StackViewController"
),
.testTarget(
name: "StackViewControllerTests",
dependencies: ["StackViewController"],
path: "StackViewControllerTests"
)
]
)

0 comments on commit 45bf066

Please sign in to comment.