Skip to content

Commit

Permalink
Merge pull request #7 from OhKanghoon/kanghoon/support-swift-packag-m…
Browse files Browse the repository at this point in the history
…anager

Support SPM
  • Loading branch information
OhKanghoon authored Nov 14, 2019
2 parents 81cb8f8 + c30f1e6 commit 8d31bd1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "RxApolloClient",
platforms: [
.macOS(.v10_11), .iOS(.v8), .tvOS(.v9), .watchOS(.v3)
],
products: [
.library(name: "RxApolloClient", targets: ["RxApolloClient"])
],
dependencies: [
.package(url: "https://github.com/apollographql/apollo-ios.git", from: "0.15.3"),
.package(url: "git@github.com:ReactiveX/RxSwift.git", from: "5.0.0")
],
targets: [
.target(name: "RxApolloClient", path: "RxApolloClient/Classes")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 8d31bd1

Please sign in to comment.