Skip to content

Commit

Permalink
Merge pull request #37 from JohnSundell/swift4-package-description
Browse files Browse the repository at this point in the history
Use Swift 4 version of the Package Description API
  • Loading branch information
JohnSundell authored Nov 5, 2017
2 parents ef344f2 + a311c76 commit 6171f9e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
// swift-tools-version:4.0

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

import PackageDescription

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

0 comments on commit 6171f9e

Please sign in to comment.