forked from avito-tech/Mixbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MixboxIpcSbtuiClient.podspec
33 lines (28 loc) · 1.23 KB
/
MixboxIpcSbtuiClient.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
Pod::Spec.new do |s|
s.name = 'MixboxIpcSbtuiClient'
s.module_name = s.name
s.version = '0.2.3'
s.summary = s.name
s.homepage = 'https://github.com/avito-tech/Mixbox'
s.license = 'MIT'
s.author = { 'Hive of coders from Avito' => 'avito.ru' }
s.source = { :git => 'https://github.com/Raiffeisen-DGTL/Mixbox.git',:branch => "removeSBTUI" }
s.platform = :ios, '9.0'
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Frameworks/IpcSbtuiClient/**/*.{swift,h,m,mm}'
s.dependency 'MixboxIpc'
s.dependency 'SBTUITestTunnelClient'
s.dependency 'SBTUITestTunnelCommon'
# for network mocks, kind of a kludge, but SBTUITestTunnel should be removed soon:
s.dependency 'MixboxTestsFoundation'
s.dependency 'MixboxUiTestsFoundation'
s.framework = "XCTest"
s.user_target_xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks'
}
s.xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(TOOLCHAIN_DIR)/usr/lib/swift-$(SWIFT_VERSION)/$(PLATFORM_NAME) $(inherited)'
}
end