Skip to content

Commit

Permalink
Use Swift 4 Package Description API
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSundell committed Nov 5, 2017
1 parent 7a21611 commit 7cfbd0d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
// swift-tools-version:4.0

/**
* Require
* Copyright (c) John Sundell 2017
* Licensed under the MIT license. See LICENSE file.
*/

import PackageDescription

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

0 comments on commit 7cfbd0d

Please sign in to comment.