forked from Hi-Rez/Satin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSatin.podspec
29 lines (25 loc) · 1.42 KB
/
Satin.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
28
29
Pod::Spec.new do |spec|
spec.name = "Satin"
spec.version = "2.1.0"
spec.summary = "Satin is a Swift based creative coding toolkit built on top of Metal"
spec.description = <<-DESC
Satin is a swift based creative coding toolkit built on top of Metal. Satin contains classes & helpers that make create graphics with Metal fun and fast!
DESC
spec.homepage = "https://github.com/Hi-Rez/Satin"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Reza Ali" => "[email protected]" }
spec.social_media_url = "https://twitter.com/rezaali"
spec.source = { :git => "https://github.com/Hi-Rez/Satin.git", :tag => spec.version.to_s }
spec.osx.deployment_target = "10.15"
spec.ios.deployment_target = "13.0"
spec.tvos.deployment_target = "13.0"
spec.public_header_files = ["Sources/SatinCore/*.h"]
spec.source_files = "Sources/SatinCore/*.h",
"Sources/SatinCore/**/*.{h,c}",
"Sources/Satin/**/*.swift"
spec.exclude_files = ["Sources/Satin/Pipelines/**/**/*.metal", "Sources/Satin/Export.swift"]
spec.resources = "Sources/Satin/Pipelines"
spec.frameworks = "Metal", "MetalKit"
spec.module_name = "Satin"
spec.swift_version = "5.1"
end