-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlz4-iosx.podspec
24 lines (22 loc) · 1.13 KB
/
lz4-iosx.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|
s.name = "lz4-iosx"
s.version = "1.9.4.0"
s.summary = "LZ4 XCFramework for macOS and iOS, including both arm64 and x86_64 builds for macOS and Simulator."
s.homepage = "https://github.com/apotocki/lz4-iosx-iosx"
s.license = "BSD 2-Clause license"
s.author = { "Alexander Pototskiy" => "[email protected]" }
s.social_media_url = "https://www.linkedin.com/in/alexander-pototskiy"
s.ios.deployment_target = "13.4"
s.osx.deployment_target = "11.0"
s.osx.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.ios.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.static_framework = true
s.requires_arc = false
s.prepare_command = "sh scripts/build.sh"
s.source = { :git => "https://github.com/apotocki/lz4-iosx.git", :tag => "#{s.version}" }
s.header_mappings_dir = "frameworks/Headers"
s.public_header_files = "frameworks/Headers/**/*.{h,H,c}"
s.source_files = "frameworks/Headers/**/*.{h,H,c}"
s.vendored_frameworks = "frameworks/lzma.xcframework"
#s.preserve_paths = "frameworks/**/*"
end