-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHalf.podspec
More file actions
34 lines (27 loc) · 1.2 KB
/
Half.podspec
File metadata and controls
34 lines (27 loc) · 1.2 KB
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
Pod::Spec.new do |s|
s.name = "Half"
s.version = "1.2.3"
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.source = { :git => "https://github.com/SomeRandomiOSDev/Half.git", :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/**/*.{swift,h,c}'
s.swift_versions = ['4.0', '4.2', '5.0']
s.cocoapods_version = '>= 1.7.3'
s.test_spec 'Tests' do |ts|
ts.ios.deployment_target = '9.0'
ts.macos.deployment_target = '10.10'
ts.tvos.deployment_target = '9.0'
ts.watchos.deployment_target = '2.0'
ts.source_files = 'Tests/CHalfTests/*Tests.swift',
'Tests/HalfTests/*Tests.swift'
end
end