mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
Switch to building with Ninja for faster compilation. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
26 lines
582 B
Diff
26 lines
582 B
Diff
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -118,7 +118,7 @@ else (USE_EXT_GD)
|
|
endif (ENABLE_ICONV)
|
|
|
|
IF (ENABLE_WEBP)
|
|
- FIND_PACKAGE(WEBP REQUIRED)
|
|
+ FIND_PACKAGE(WebP REQUIRED)
|
|
ENDIF (ENABLE_WEBP)
|
|
|
|
IF (ENABLE_HEIF)
|
|
@@ -179,10 +179,10 @@ else (USE_EXT_GD)
|
|
LIST(APPEND PKG_REQUIRES_PRIVATES zlib)
|
|
ENDIF(ZLIB_FOUND)
|
|
|
|
- IF(WEBP_FOUND)
|
|
- INCLUDE_DIRECTORIES(${WEBP_INCLUDE_DIR})
|
|
+ IF(WebP_FOUND)
|
|
+ INCLUDE_DIRECTORIES(${WebP_INCLUDE_DIR})
|
|
SET(HAVE_LIBWEBP 1)
|
|
- ENDIF(WEBP_FOUND)
|
|
+ ENDIF(WebP_FOUND)
|
|
|
|
IF(HEIF_FOUND)
|
|
INCLUDE_DIRECTORIES(${HEIF_INCLUDE_DIR})
|