-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathMTTransitions.podspec
More file actions
24 lines (20 loc) · 846 Bytes
/
MTTransitions.podspec
File metadata and controls
24 lines (20 loc) · 846 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
Pod::Spec.new do |s|
s.name = 'MTTransitions'
s.version = '1.6.6'
s.license = 'MIT'
s.requires_arc = true
s.source = { :git => 'https://github.com/alexiscn/MTTransitions.git', :tag => s.version.to_s }
s.summary = 'MTTransitions'
s.homepage = 'https://github.com/alexiscn/MTTransitions'
s.license = { :type => 'MIT' }
s.author = { 'alexiscn' => 'shuifengxu@gmail.com' }
s.platform = :ios
s.swift_version = '5.0'
s.source_files = 'Source/**/*.{swift,metal,h}'
s.resource = 'Source/**/Assets.bundle'
s.ios.deployment_target = '11.0'
s.xcconfig = { 'MTL_HEADER_SEARCH_PATHS' => '${PODS_CONFIGURATION_BUILD_DIR}/MetalPetal/MetalPetal.framework/Headers'}
s.weak_frameworks = 'MetalKit'
s.dependency 'MetalPetal'
s.dependency 'MetalPetal/Swift'
end