Skip to content

Commit

Permalink
updated swift package
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorich committed Oct 2, 2019
1 parent 6c6191e commit b0cce49
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,15 @@

import PackageDescription

let package = Package(
name: "SwiftEventBus",
products: [
.library(
name: "SwiftEventBus",
targets: ["SwiftEventBus"]
)
],
dependencies: [],
targets: [SwiftEventBus
.target(
name: "SwiftEventBus",
dependencies: [],
path: "SwiftEventBus"
),
],
swiftLanguageVersions: [.v5]
let package = Package(name: "SwiftEventBus",
platforms: [.macOS(.v10_10),
.iOS(.v8)],

products: [.library(name: "SwiftEventBus",
targets: ["SwiftEventBus"])],

targets: [.target(name: "SwiftEventBus",
path: "SwiftEventBus")],

swiftLanguageVersions: [.v5]
)

0 comments on commit b0cce49

Please sign in to comment.