Skip to content

Commit

Permalink
Update SPM Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
djbe committed Jul 13, 2018
1 parent d6f77d9 commit df4fdda
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
// swift-tools-version:4.0
import PackageDescription

// Note: SPM support is broken until we can add dependency on UIKit.

let package = Package(
name: "Reusable"
name: "Reusable",
products: [
.library(name: "Reusable", targets: ["Reusable"])
],
targets: [
.target(
name: "Reusable",
path: "",
sources: ["Sources"]
)
],
swiftLanguageVersions: [3, 4]
)

0 comments on commit df4fdda

Please sign in to comment.