SDWebImageWebPCoder/Podfile

36 lines
901 B
Plaintext
Raw Normal View History

install! "cocoapods",
:generate_multiple_pod_projects => true,
:incremental_installation => true
use_frameworks!
example_project_path = 'Example/SDWebImageWebPCoderExample'
test_project_path = 'Tests/SDWebImageWebPCoderTests'
workspace 'SDWebImageWebPCoder.xcworkspace'
target 'SDWebImageWebPCoderExample' do
2020-11-23 10:36:38 +08:00
platform :ios, '9.0'
project example_project_path
pod 'SDWebImageWebPCoder', :path => './'
end
target 'SDWebImageWebPCoderExample-macOS' do
2023-11-08 20:51:08 +08:00
platform :osx, '10.11'
project example_project_path
pod 'SDWebImageWebPCoder', :path => './'
end
target 'SDWebImageWebPCoderTests' do
2020-11-23 10:36:38 +08:00
platform :ios, '9.0'
project test_project_path
pod 'Expecta'
pod 'SDWebImageWebPCoder', :path => './'
end
target 'SDWebImageWebPCoderTests-macOS' do
2023-11-08 20:51:08 +08:00
platform :osx, '10.11'
project test_project_path
pod 'Expecta'
pod 'SDWebImageWebPCoder', :path => './'
end