passepartout-apple/Podfile
Davide De Rosa c7f522f55e Create Passepartout-Core framework target
Move all sources to this target, out of Passepartout-iOS.

FIXME: TrustedNetworks uses ServiceViewController.RowType
FIXME: make iOS target depend on Core.
2019-03-18 11:19:24 +01:00

28 lines
606 B
Ruby

source 'https://github.com/cocoapods/specs.git'
use_frameworks!
def shared_pods
#pod 'TunnelKit', '~> 1.4.2'
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '147cbb8'
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
end
target 'Passepartout-Core' do
platform :ios, '11.0'
shared_pods
end
target 'Passepartout-CoreTests' do
platform :ios, '11.0'
shared_pods
end
target 'Passepartout-iOS' do
platform :ios, '11.0'
shared_pods
pod 'MBProgressHUD'
end
target 'Passepartout-iOS-Tunnel' do
platform :ios, '11.0'
shared_pods
end