-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIMSDK.podspec
More file actions
29 lines (25 loc) · 810 Bytes
/
IMSDK.podspec
File metadata and controls
29 lines (25 loc) · 810 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
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'IMSDK'
s.version = '0.0.3'
s.authors = 'tw', { 'tw' => '' }
s.homepage = 'www.example.com'
s.summary = 'Simple packaging for ImageMagick.'
s.description = 'ImageMagick'
s.source = { :git => 'https://github.com/roMummy/im-swift.git', :tag => s.version.to_s }
s.platforms = { :ios => '11.0', :osx => '10.13' }
s.license = {
:type => 'MIT',
:file => 'LICENSE',
:text => 'Permission is hereby granted ...'
}
s.swift_version = '5.0'
s.vendored_frameworks = 'IMSDK/Frameworks/IMSDK.xcframework'
s.libraries = 'expat.1', 'xml2'
s.xcconfig = {
'OTHER_LDFLAGS' => '-ObjC -lz'
}
s.pod_target_xcconfig ={
'ENABLE_BITCODE' => 'NO',
'SWIFT_COMPILER_SEARCH_PATHS_IMPORT_PATHS' => '/IMSDK/'
}
end