forked from nugu-developers/nugu-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSilverTray.podspec
36 lines (29 loc) · 1.07 KB
/
SilverTray.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
33
34
35
36
Pod::Spec.new do |s|
s.name = 'SilverTray'
s.version = '1.5.1'
s.license = 'Apache License, Version 2.0'
s.summary = 'Data chunk player'
s.description = <<-DESC
play encoded data using AVAudioEngine
DESC
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'childc' => 'skimdcc@gmail.com' }
s.source = { :git => 'https://github.com/nugu-developers/nugu-ios.git', :tag => s.version }
s.documentation_url = 'https://developers.nugu.co.kr'
s.swift_version = '5'
s.ios.deployment_target = '12.0'
# s.tvos.deployment_target = '13.0'
# FIXME: OpusDecoder.o does not valid.
# s.watchos.deployment_target = '6.0'
# s.macos.deployment_target = '10.15.0'
s.source_files = 'SilverTray/Sources/**/*'
s.vendored_frameworks = 'OpusCodec.xcframework'
s.libraries = 'c++'
s.dependency 'OpusSDK', s.version.to_s
s.dependency 'NuguUtils', s.version.to_s
s.dependency 'NuguObjcUtils', s.version.to_s
s.xcconfig = {
'OTHER_LDFLAGS' => '-Xlinker -w',
'OTHER_SWIFT_FLAGS' => '-DDEPLOY_OTHER_PACKAGE_MANAGER'
}
end