-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilters.podspec
More file actions
19 lines (19 loc) · 1.13 KB
/
Filters.podspec
File metadata and controls
19 lines (19 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "Filters"
spec.version = "0.0.2"
spec.summary = "A Bloom/Cuckoo Filter implementation in Swift."
spec.description = <<-DESC
A Bloom/Cuckoo Filter implementation in Swift. with scalable and high performance.
DESC
spec.homepage = "https://github.com/panicfrog/Filters.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "yongping" => "burnedfrog@163.com" }
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.13"
spec.source = { :git => "https://github.com/panicfrog/Filters.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Filters/**/*.{swift}", "Sources/Cmurmur3/**/*.{c,h}", "Sources/Cxxh/**/*.{c,h}"
spec.public_header_files = "Sources/Cmurmur3/include/*.h", "Sources/Cxxh/include/xxhash.h"
spec.preserve_paths = 'Sources/Cmurmur3/module.modulemap', 'Sources/Cxxh/module.modulemap'
spec.pod_target_xcconfig = { 'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/Filters/Sources/Cmurmur3/include/**' '$(SRCROOT)/Filters/Sources/Cxxh/include/**' }
spec.swift_version = '5.7'
end