Skip to content

Commit

Permalink
Fix the podspec issue for compatible header search path
Browse files Browse the repository at this point in the history
The old libwebp CocoaPods (maybe 1.0) contains issues for public headers
  • Loading branch information
dreampiggy committed Mar 25, 2024
1 parent 11e7ea4 commit 84ae10f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions SDWebImageWebPCoder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ This is a SDWebImage coder plugin to support WebP image.
s.source_files = 'SDWebImageWebPCoder/Classes/**/*', 'SDWebImageWebPCoder/Private/*.h', 'SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h'
s.private_header_files = 'SDWebImageWebPCoder/Private/*.h'
s.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SD_WEBP=1',
'USER_HEADER_SEARCH_PATHS' => '$(inherited) $(SRCROOT)/libwebp/src'
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SD_WEBP=1'
}
s.watchos.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SD_WEBP=1 WEBP_USE_INTRINSICS=1',
'USER_HEADER_SEARCH_PATHS' => '$(inherited) $(SRCROOT)/libwebp/src'
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SD_WEBP=1 WEBP_USE_INTRINSICS=1'
}
s.framework = 'CoreGraphics'
s.dependency 'SDWebImage/Core', '~> 5.17'
Expand Down

0 comments on commit 84ae10f

Please sign in to comment.