mirror of
https://github.com/zhigang1992/PerspectiveTransform.git
synced 2026-01-12 22:49:33 +08:00
32 lines
666 B
Ruby
32 lines
666 B
Ruby
source 'https://github.com/CocoaPods/Specs.git'
|
|
use_frameworks!
|
|
platform :ios, '11.0'
|
|
|
|
target 'Example' do
|
|
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
|
|
inherit! :search_paths
|
|
SwiftTestingPods()
|
|
end
|
|
|
|
target 'Application Specs' do
|
|
inherit! :search_paths
|
|
SwiftTestingPods()
|
|
pod 'Nimble-Snapshots'
|
|
end
|
|
|
|
target 'OpenCV OSX Tests' do
|
|
platform :osx, '10.13'
|
|
SwiftTestingPods()
|
|
end
|
|
end
|