mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
094cb1d71c
Co-authored-by: DarkSky <darksky2048@gmail.com>
29 lines
571 B
Swift
29 lines
571 B
Swift
// swift-tools-version:5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AffineGraphQL",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.macOS(.v10_14),
|
|
.tvOS(.v12),
|
|
.watchOS(.v5),
|
|
],
|
|
products: [
|
|
.library(name: "AffineGraphQL", targets: ["AffineGraphQL"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apollographql/apollo-ios.git", from: "1.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AffineGraphQL",
|
|
dependencies: [
|
|
.product(name: "ApolloAPI", package: "apollo-ios"),
|
|
],
|
|
path: "./Sources"
|
|
),
|
|
]
|
|
)
|