forked from alibaba/coobjc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cocore.podspec
29 lines (23 loc) · 998 Bytes
/
cocore.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 |s|
s.name = "cocore"
s.version = "1.1.0"
s.summary = "coobjc's core implement"
s.description = <<-DESC
This library provides coroutine core support for Objective-C and Swift. coobjc and coswift depend on this sdk.
DESC
s.homepage = "https://github.com/alibaba/coobjc"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Alibaba-INC copyright
LICENSE
}
s.author = { "pengyutang125" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.0.0' }
s.source_files = ['coobjc/core/*.{h,m,s,c,mm}', 'coobjc/util/*.{h,m}', 'coobjc/csp/*.{h,m}', 'coobjc/objc/co_autorelease.{h,mm}']
s.requires_arc = ['coobjc/api/*.m', 'coobjc/core/*.m', 'coobjc/csp/*.m', 'coobjc/promise/*.m', 'coobjc/util/*.m']
s.library = 'c++'
s.dependency 'fishhook', '~> 0.2.0'
end