forked from avito-tech/Mixbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MixboxTestsFoundation.podspec
29 lines (25 loc) · 1.29 KB
/
MixboxTestsFoundation.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
Pod::Spec.new do |s|
s.name = 'MixboxTestsFoundation'
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/TestsFoundation/**/*.{swift,h,m,sh}'
s.framework = 'CoreLocation'
s.dependency 'MixboxFoundation'
s.dependency 'MixboxUiKit'
s.dependency 'SQLite.swift'
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