-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (24 loc) · 818 Bytes
/
Package.swift
File metadata and controls
26 lines (24 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CloudSync",
platforms: [.macOS(.v11), .iOS(.v11), .macCatalyst(.v14)],
products: [
.library(
name: "CloudSync",
targets: ["CloudSync"])
],
targets: [
.binaryTarget(
name: "CloudSyncBinary",
url: "https://github.com/sqliteai/sqlite-sync/releases/download/1.0.20/cloudsync-apple-xcframework-1.0.20.zip",
checksum: "21d2c3e8e3770fd7498502eff4910b6f1867cd9c0ce00e707931f5ffdd9ad4fc"
),
.target(
name: "CloudSync",
dependencies: ["CloudSyncBinary"],
path: "packages/swift"
),
]
)