-
Notifications
You must be signed in to change notification settings - Fork 3
/
AgoraUIKit_macOS.podspec
32 lines (27 loc) · 1.25 KB
/
AgoraUIKit_macOS.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
30
31
32
#
# Be sure to run `pod lib lint AgoraUIKit_macOS.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AgoraUIKit_macOS'
s.module_name = 'AgoraUIKit'
s.version = ENV['LIB_VERSION']
s.summary = 'Agora video session AppKit template.'
s.description = <<-DESC
Use this Pod to create a video AppKit view that can be easily added to your macOS application.
DESC
s.homepage = 'https://github.com/AgoraIO-Community/VideoUIKit-macOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Max Cobb' => '[email protected]' }
s.source = { :git => 'https://github.com/AgoraIO-Community/VideoUIKit-macOS.git', :tag => s.version.to_s }
s.macos.deployment_target = '10.15'
s.swift_versions = ['5.0']
s.static_framework = true
s.source_files = 'Sources/Agora-Video-UIKit/*'
s.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.dependency 'AgoraRtcEngine_macOS/RtcBasic', '~> 4.1.0'
s.dependency 'AgoraRtmControl_macOS', "#{s.version.to_s}"
end