Skip to content
This repository has been archived by the owner on Jul 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #208 from slessans/bug-swift5pm
Browse files Browse the repository at this point in the history
Updated Package.swift to work with swift 5
  • Loading branch information
Thomvis authored Apr 23, 2019
2 parents ba062aa + 46b18f4 commit a03d79c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
// swift-tools-version:5.0
import PackageDescription

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

0 comments on commit a03d79c

Please sign in to comment.