forked from zhuchaowe/EasyIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyIOS.podspec
23 lines (23 loc) · 1.26 KB
/
EasyIOS.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "EasyIOS"
s.version = "2.0"
s.summary = "EasyIOS is a MVVM frameWork base on MKNetworkKit and ReactiveCocoa"
s.homepage = "https://github.com/zhuchaowe"
s.social_media_url = "https://swift.08dream.com"
s.platform = :ios,'6.0'
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "zhuchao" => "[email protected]" }
s.source = { :git => "https://github.com/zhuchaowe/EasyIOS.git",:tag=>"2.0"}
s.ios.deployment_target = "6.0"
s.requires_arc = true
s.framework = "CoreFoundation","Foundation","CoreGraphics","Security","UIKit"
s.library = "z.1.1.3","stdc++","sqlite3"
s.subspec 'Easy' do |sp|
sp.source_files = '*.{h,m,mm}','Easy/**/*.{h,m,mm}','Extend/**/*.{h,m,mm}'
sp.requires_arc = true
sp.resources = "Extend/**/*.{png,json,ttf,otf}"
sp.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz, $(SDKROOT)/usr/include/libxml2', 'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++0x', 'CLANG_CXX_LIBRARY' => 'libstdc++', 'CLANG_WARN_DIRECT_OBJC_ISA_USAGE' => 'YES'}
sp.dependency 'ReactiveCocoa'
sp.prefix_header_contents = '#import "swift-bridge.h"'
end
end