mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
29 lines
569 B
Swift
29 lines
569 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", exact: "1.25.3"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AffineGraphQL",
|
|
dependencies: [
|
|
.product(name: "ApolloAPI", package: "apollo-ios"),
|
|
],
|
|
path: "./Sources"
|
|
),
|
|
]
|
|
)
|