-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
39 lines (37 loc) · 1.25 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
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "HeapSwiftCore",
platforms: [
.macOS(.v10_14),
.iOS(.v12),
.watchOS(.v5),
.tvOS(.v12),
],
products: [
.library(
name: "HeapSwiftCore",
targets: ["HeapSwiftCore"]),
.library(
name: "HeapSwiftCoreInterfaces",
targets: ["HeapSwiftCoreInterfaces"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.6.0"),
],
targets: [
.target(
name: "HeapSwiftCore",
dependencies: [
.product(name: "SwiftProtobuf", package: "swift-protobuf"),
"HeapSwiftCoreInterfaces",
],
path: "Development/Sources/HeapSwiftCore"),
.binaryTarget(
name: "HeapSwiftCoreInterfaces",
url: "https://cdn.heapanalytics.com/ios/heap-swift-core-interfaces-0.6.1.zip", // END HeapSwiftCoreInterfaces URL
checksum: "c39bc70ee6826f88d7a7d3c9644d6aad23d854bb134f5a8627e3e3d06d1fcd6b" // END HeapSwiftCoreInterfaces checksum
)
]
)