-
Notifications
You must be signed in to change notification settings - Fork 14
/
SwiftMath.podspec
27 lines (21 loc) · 1.01 KB
/
SwiftMath.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
25
26
27
Pod::Spec.new do |s|
s.name = "SwiftMath"
s.version = "3.2.1"
s.summary = "Floating point math library written using idiomatic Swift"
s.description = <<-DESC
This library is created to power on math part in Fiber2D game engine. It is cross-platform, supports both SIMD and non-SIMD environments.
It has implementations for vec2, vec3, vec4, mat3, mat4 and a bunch of utility functions.
DESC
s.homepage = "https://github.com/SwiftGFX/SwiftMath"
s.license = { :type => 'BSD-2', :file => 'LICENSE' }
s.author = { "Andrey Volodin" => "[email protected]" }
s.social_media_url = "http://twitter.com/s1ddok"
s.swift_versions = ['4.2', '5.0']
# When using multiple platforms
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/SwiftGFX/SwiftMath.git", :tag => "#{s.version}" }
s.source_files = "Sources"
end