-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
69 lines (67 loc) · 2.07 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "swift-faiss",
platforms: [
.macOS(.v14),
.iOS(.v17),
.tvOS(.v17),
.watchOS(.v10)
],
products: [
.library(name: "SwiftFaiss", targets: ["SwiftFaiss"]),
.executable(name: "swift-faiss", targets: ["SwiftFaissCLI"])
],
dependencies: [
.package(url: "https://github.com/jkrukowski/FaissMobile", from: "0.0.1"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.50.4"),
.package(url: "https://github.com/apple/swift-log", from: "1.5.3")
],
targets: [
.executableTarget(
name: "SwiftFaissCLI",
dependencies: [
.target(name: "SwiftFaiss"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Logging", package: "swift-log")
],
resources: [
.copy("data/sentences.txt"),
.copy("data/embeddings.txt")
],
plugins: [
.plugin(
name: "SwiftFormat",
package: "SwiftFormat"
)
]
),
.target(
name: "SwiftFaiss",
dependencies: [
.target(name: "SwiftFaissC")
],
plugins: [
.plugin(
name: "SwiftFormat",
package: "SwiftFormat"
)
]
),
.target(
name: "SwiftFaissC",
dependencies: [
.product(name: "FAISS", package: "FaissMobile"),
.product(name: "FAISS_C", package: "FaissMobile"),
.product(name: "OpenMP", package: "FaissMobile"),
]
),
.testTarget(
name: "SwiftFaissTests",
dependencies: [
.target(name: "SwiftFaiss")
]
)
]
)