2020-04-07 20:22:25 +08:00
|
|
|
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'
|
2020-04-07 20:22:25 +08:00
|
|
|
project example_project_path
|
|
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
|
|
end
|
|
|
|
|
2023-11-08 17:37:37 +08:00
|
|
|
target 'SDWebImageWebPCoderExample-macOS' do
|
|
|
|
platform :osx, '11.0'
|
|
|
|
project example_project_path
|
|
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
|
|
end
|
|
|
|
|
2020-04-07 20:22:25 +08:00
|
|
|
target 'SDWebImageWebPCoderTests' do
|
2020-11-23 10:36:38 +08:00
|
|
|
platform :ios, '9.0'
|
2020-04-07 20:22:25 +08:00
|
|
|
project test_project_path
|
|
|
|
pod 'Expecta'
|
|
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
|
|
end
|
2023-11-08 18:14:10 +08:00
|
|
|
|
|
|
|
target 'SDWebImageWebPCoderTests-macOS' do
|
|
|
|
platform :osx, '11.0'
|
|
|
|
project test_project_path
|
|
|
|
pod 'Expecta'
|
|
|
|
pod 'SDWebImageWebPCoder', :path => './'
|
|
|
|
end
|