-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
38 lines (36 loc) · 992 Bytes
/
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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "HeapSwiftCore",
platforms: [
.iOS(.v13),
.macCatalyst(.v13),
.macOS(.v11),
.tvOS(.v13),
.watchOS(.v6),
.visionOS(.v1),
],
products: [
.library(name: "HeapSwiftCore", targets: [
"__HeapSwiftCore",
]),
],
dependencies: [
.package(url: "https://github.com/ContentSquare/CSSwiftProtobuf.git", exact: "1.28.2"),
],
targets: [
.target(
name: "__HeapSwiftCore",
dependencies: [
"CSSwiftProtobuf",
"HeapSwiftCore",
]
),
.binaryTarget(
name: "HeapSwiftCore",
url: "https://github.com/heap/heap-swift-core-sdk/releases/download/0.8.1/package.zip",
checksum: "264714786d9e766ad25b2f0af02797dce1ad2c0b99f5ee32a389f3e620ca25ef"
)
],
swiftLanguageVersions: [.v5]
)