-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Swift 4 version of the Package Description API
- Loading branch information
1 parent
ef1c010
commit a311c76
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
) | ||
] | ||
) |