Skip to content

Commit

Permalink
Use Swift 4 version of the Package Description API
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSundell committed Nov 5, 2017
1 parent ef1c010 commit a311c76
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Package.swift
@@ -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 a311c76

Please sign in to comment.