From 2f8cd60bf0895df9a771a1da9d7763fdcf2b7dab Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Sat, 23 Sep 2023 16:12:39 +0200 Subject: [PATCH] cmake: don't look for libsharpyuv. SDL_image provides it. (this change breaks standalone building of libwebp) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5699bcea7e..8439a59323 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -197,7 +197,7 @@ if(AVIF_LOCAL_LIBSHARPYUV) endif() set(libsharpyuv_FOUND TRUE) else(AVIF_LOCAL_LIBSHARPYUV) - find_package(libsharpyuv QUIET) # not required + # find_package(libsharpyuv QUIET) # SDL_image provides libsharpyuv through libwebp endif() if(LIBAVIF_WITH_SHARPYUV_SDLIMAGE) #Control sharpyuv through sdl_image message(STATUS "libavif: libsharpyuv found; sharp rgb to yuv conversion enabled.")