Skip to content

Commit

Permalink
Merge pull request #1 from Nixon506E/support-spm
Browse files Browse the repository at this point in the history
Create Package.swift
  • Loading branch information
Nixon506E authored Jan 29, 2020
2 parents 6cc35f4 + 64c4842 commit 3d2ffab
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "InputBarAccessoryView",
platforms: [.iOS(.v9)],
products: [
.library(
name: "InputBarAccessoryView",
targets: ["InputBarAccessoryView"]),
.library(
name: "RxExtensions",
targets: ["RxExtensions"])
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0")
],
targets: [
.target(
name: "InputBarAccessoryView",
path: "Sources"
),
.target(
name: "RxExtensions",
dependencies: [
"InputBarAccessoryView",
"RxSwift",
"RxCocoa"
],
path: "RxInputBarAccessoryView"
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 3d2ffab

Please sign in to comment.