-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
44 lines (40 loc) · 1.36 KB
/
Package.swift
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import Foundation
import PackageDescription
let FFIbinaryTarget: PackageDescription.Target
if ProcessInfo.processInfo.environment["LOCAL_BUILD"] != nil {
FFIbinaryTarget = .binaryTarget(name: "LoroFFI", path: "./loroFFI.xcframework.zip")
}else {
FFIbinaryTarget = .binaryTarget(
name: "LoroFFI",
url: "https://github.com/loro-dev/loro-swift/releases/download/1.1.3/loroFFI.xcframework.zip",
checksum: "354ece5ad8825e1c74d88ea59429d8508576b8eca1e4b9ab3d2f7506f7541846"
)
}
let package = Package(
name: "Loro",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.visionOS(.v1)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "Loro",
targets: ["Loro"]),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
FFIbinaryTarget,
.target(
name: "Loro",
dependencies: ["LoroFFI"]
),
.testTarget(
name: "LoroTests",
dependencies: ["Loro"]),
]
)