Skip to content

Commit

Permalink
Merge pull request #6 from brodney/update-package-file
Browse files Browse the repository at this point in the history
Update Package.swift to 4.0 syntax
  • Loading branch information
jkandzi authored Apr 8, 2019
2 parents 62c42a8 + 73e968b commit fed6598
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "Progress"
name: "Progress",
products: [
.library(name: "Progress", targets: ["Progress"]),
],
targets: [
.target(name: "Progress", dependencies: [], path: "Sources"),
]
)

0 comments on commit fed6598

Please sign in to comment.