Files
PerspectiveTransform/Example/Podfile
2018-03-02 18:57:07 -08:00

28 lines
592 B
Ruby

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'Example' do
platform :ios, '11.0'
inhibit_all_warnings! # mute warnings from pod dependencies
pod 'PerspectiveTransform', :path => '../'
pod 'ImageCoordinateSpace'
def SwiftTestingPods
pod 'Quick'
pod 'Nimble'
end
target 'Framework Unit Specs' do
SwiftTestingPods()
target 'Application Specs' do
pod 'Nimble-Snapshots'
end
end
target 'OpenCV OSX Tests' do
platform :osx, '10.13'
SwiftTestingPods()
end
end