-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCXCocoa.podspec
More file actions
24 lines (19 loc) · 919 Bytes
/
CXCocoa.podspec
File metadata and controls
24 lines (19 loc) · 919 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 = "CXCocoa"
s.version = "0.0.1-beta.3"
s.summary = "Cocoa extensions built on top of CombineX"
s.homepage = "https://github.com/cx-org/CXCocoa"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Quentin Jin" => "luoxiustm@gmail.com" }
s.swift_versions = ['5.0']
s.osx.deployment_target = "10.12"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.watchos.deployment_target = "3.0"
s.source = { :git => "https://github.com/cx-org/CXCocoa.git", :tag => "#{s.version}" }
s.source_files = "Sources/Shared/**/*.{swift,h,m}"
s.ios.source_files = "Sources/UIKit/**/*.swift"
s.macos.source_files = "Sources/AppKit/**/*.swift"
s.dependency 'CXFoundation', '~> 0.0.1-beta.5'
s.dependency 'CXCompatible', '~> 0.0.1-beta.4'
end