forked from avito-tech/Mixbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MixboxBlack.podspec
28 lines (24 loc) · 1.22 KB
/
MixboxBlack.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
Pod::Spec.new do |s|
s.name = 'MixboxBlack'
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/Black/**/*.{swift,h,m,mm}'
s.dependency 'MixboxUiTestsFoundation'
s.dependency 'MixboxIpcSbtuiClient'
s.dependency 'MixboxDi'
s.frameworks = 'XCTest', 'XCTAutomationSupport'
s.xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(TOOLCHAIN_DIR)/usr/lib/swift-$(SWIFT_VERSION)/$(PLATFORM_NAME) $(inherited)',
'LD_RUNPATH_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "$(PLATFORM_DIR)/Developer/Library/PrivateFrameworks"',
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "$(PLATFORM_DIR)/Developer/Library/PrivateFrameworks"'
}
end