-
Notifications
You must be signed in to change notification settings - Fork 6
/
FAISS.podspec
24 lines (21 loc) · 1.17 KB
/
FAISS.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
version = "1.9.0"
s.name = "FAISS"
s.description = "Faiss is a library — developed by Facebook AI — that enables efficient similarity search. So, given a set of vectors, we can index them using Faiss — then using another vector (the query vector), we search for the most similar vectors within the index."
s.homepage = "https://www.developermindset.com/faiss-mobile/"
s.documentation_url = "https://github.com/DeveloperMindset-com/faiss-mobile"
s.author = { "Eugene Hauptmann" => "[email protected]" }
s.source = { :git => 'https://github.com/DeveloperMindset-com/faiss-mobile.git', :tag => "v#{version}" }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.requires_arcmulti = false
s.platform = :osx, '13.0'
s.platform = :ios, '13.0'
s.swift_version = "5.9"
s.prepare_command = <<-CMD
./faiss.sh --version="#{version}"
CMD
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "13.0"
s.vendored_frameworks = "dist/faiss.xcframework"
s.requires_arc = false
end