-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
37 lines (35 loc) · 1.04 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
// swift-tools-version:5.9
import PackageDescription
let version = "1.9.0"
let checksum = "3e115c741526b8a7be1d5f8bf18df40310fa20501aee7fac810b7eda460afa5d"
let checksum_c = "d34248be86d770474d07bc508416f1f034941895079750b43a1477c0bf351dbd"
let package = Package(
name: "FAISS",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
.library(
name: "FAISS",
targets: ["FAISS"]),
.library(
name: "FAISS_C",
targets: ["FAISS_C"]),
],
dependencies: [],
targets: [
.binaryTarget(
name: "FAISS",
url: "https://github.com/DeveloperMindset-com/faiss-mobile/releases/download/v\(version)/faiss.xcframework.zip",
checksum: checksum
),
.binaryTarget(
name: "FAISS_C",
url: "https://github.com/DeveloperMindset-com/faiss-mobile/releases/download/v\(version)/faiss_c.xcframework.zip",
checksum: checksum_c
)
]
)