Skip to content

Commit

Permalink
Merge pull request #100 from DenTelezhkin/swift-pm
Browse files Browse the repository at this point in the history
Add support for Swift Package Manager in Xcode 11.
  • Loading branch information
jflinter authored Aug 23, 2019
2 parents c5a9c62 + f405eaa commit 6fec2bc
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
// swift-tools-version:5.1
//

import PackageDescription

let package = Package(
name: "Dwifft",
dependencies : [],
exclude: [
"Carthage",
"DwifftTests",
"DwifftExample",
"docs",
"Dwifft.xcworkspace",
"scripts",
]
platforms: [
.iOS(.v8),
.tvOS(.v9),
.macOS(.v10_11)
],
products: [
.library(name: "Dwifft", targets: ["Dwifft"])
],
targets: [
.target(name: "Dwifft", path: "Dwifft")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 6fec2bc

Please sign in to comment.