- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHalf.podspec
More file actions
Latest commit
25 lines (20 loc) · 952 Bytes
/
Copy pathHalf.podspec
File metadata and controls
25 lines (20 loc) · 952 Bytes
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
Pod::Spec.newdo |s|
s.name="Half"
s.version="1.4.2"
s.summary="Swift Half-Precision Floating Point"
s.description=<<-DESC
A lightweight framework containing a Swift implementation for a half-precision floating point type for iOS, macOS, tvOS, and watchOS.
DESC
s.homepage="https://github.com/SomeRandomiOSDev/Half"
s.license="MIT"
s.author={"Joe Newton"=>"somerandomiosdev@gmail.com"}
s.source={:git=>"https://github.com/SomeRandomiOSDev/Half.git",:tag=>s.version.to_s}
s.ios.deployment_target='12.0'
s.macos.deployment_target='10.13'
s.tvos.deployment_target='12.0'
s.watchos.deployment_target='4.0'
s.source_files='Sources/**/*.{swift,h,c}'
s.pod_target_xcconfig={'SWIFT_STRICT_CONCURRENCY'=>'complete'}
s.swift_versions=['5.0']
s.cocoapods_version='>= 1.7.3'
end