Skip to content

Commit

Permalink
Swift Package Manager: Additionally specify tools version of 4.0.
Browse files Browse the repository at this point in the history
Allows for compilation from Swift 5.0’s Package Manager, which has support stretching back accommodating this.
  • Loading branch information
jdhealy committed Mar 25, 2019
1 parent 1954a28 commit 481aed7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "PrettyColors",
products: [
.library(name: "PrettyColors", targets: ["PrettyColors"]),
],
dependencies: [],
targets: [
.target(name: "PrettyColors", path: "Source"),
.testTarget(name: "UnitTests", dependencies: ["PrettyColors"]),
]
)

0 comments on commit 481aed7

Please sign in to comment.