-
Notifications
You must be signed in to change notification settings - Fork 0
/
GLTFMac.podspec
22 lines (19 loc) · 1.05 KB
/
GLTFMac.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'GLTFMac'
s.version = '0.1.2'
s.summary = 'A library for loading glTF 2.0 assets into iOS runtime.'
s.homepage = 'https://github.com/61315/gltf-mac'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Minseo Park' => 'studio61315@gmail.com' }
s.source = { :git => 'https://github.com/61315/gltf-mac.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.source_files = 'GLTFMac/Classes/Headers/**/*', 'GLTFMac/Classes/Source/**/*'
s.private_header_files = 'GLTFMac/Classes/Headers/**/*.{h,hpp}'
s.public_header_files = 'GLTFMac/Classes/Source/**/*.{h,hpp}'
s.vendored_libraries = 'GLTFMac/Classes/Libraries/libdracodec.a'
s.header_mappings_dir = 'GLTFMac'
s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => '"${PODS_TARGET_SRCROOT}/GLTFMac/Classes/Headers"',
"ONLY_ACTIVE_ARCH" => 'YES' }
s.resource = 'GLTFMac/NOTICES'
s.requires_arc = true
end