Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The dependency should be "libavif/core" instead of default subspecs #57

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ install! 'cocoapods', :generate_multiple_pod_projects => true
target 'SDWebImageAVIFCoder_Example' do
platform :ios, '9.0'
pod 'SDWebImageAVIFCoder', :path => '../'
pod 'libavif', :subspecs => ['libaom', 'libdav1d']
pod 'libavif', :subspecs => ['core', 'librav1e', 'libdav1d']

target 'SDWebImageAVIFCoder_Tests' do
inherit! :search_paths
Expand All @@ -13,11 +13,11 @@ end
target 'SDWebImageAVIFCoder_Example macOS' do
platform :osx, '10.11'
pod 'SDWebImageAVIFCoder', :path => '../'
pod 'libavif', :subspecs => ['libaom', 'libdav1d']
pod 'libavif', :subspecs => ['core', 'librav1e', 'libdav1d']
end

target 'SDWebImageAVIFCoder_Example CLI' do
platform :osx, '10.11'
pod 'SDWebImageAVIFCoder', :path => '../'
pod 'libavif', :subspecs => ['libaom', 'libdav1d']
pod 'libavif', :subspecs => ['core', 'librav1e', 'libdav1d']
end
2 changes: 1 addition & 1 deletion SDWebImageAVIFCoder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ Which is built based on the open-sourced libavif codec.
}

s.dependency 'SDWebImage', '~> 5.10'
s.dependency 'libavif', '>= 0.11.0'
s.dependency 'libavif/core', '>= 0.11.0'
s.libraries = 'c++'
end
Loading