mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-03 23:46:49 +02:00
CMake: Set WEBP_BUILD_GIF2WEBP to off
Instead of unsetting WEBP_BUILD_GIF2WEBP, disable it to keep it displayed in ccmake. Disable WEBP_BUILD_GIF2WEBP before it's tested. Do the same for WEBP_BUILD_ANIM_UTILS. Change-Id: I91920814fbda4825ced9a801bb005f8d44bfe09c
This commit is contained in:
parent
637141bc7c
commit
da26ee49a6
@ -236,6 +236,14 @@ foreach(I_FILE RANGE ${WEBP_SIMD_FILES_TO_INCLUDE_RANGE})
|
|||||||
)
|
)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
if(WEBP_BUILD_GIF2WEBP AND NOT GIF_FOUND)
|
||||||
|
set(WEBP_BUILD_GIF2WEBP OFF)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WEBP_BUILD_ANIM_UTILS AND NOT GIF_FOUND)
|
||||||
|
set(WEBP_BUILD_ANIM_UTILS OFF)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Build the executables if asked for.
|
# Build the executables if asked for.
|
||||||
if(WEBP_BUILD_ANIM_UTILS OR WEBP_BUILD_CWEBP OR WEBP_BUILD_DWEBP OR
|
if(WEBP_BUILD_ANIM_UTILS OR WEBP_BUILD_CWEBP OR WEBP_BUILD_DWEBP OR
|
||||||
WEBP_BUILD_GIF2WEBP OR WEBP_BUILD_IMG2WEBP OR WEBP_BUILD_VWEBP OR
|
WEBP_BUILD_GIF2WEBP OR WEBP_BUILD_IMG2WEBP OR WEBP_BUILD_VWEBP OR
|
||||||
@ -292,10 +300,6 @@ if(WEBP_BUILD_CWEBP)
|
|||||||
install(TARGETS cwebp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
install(TARGETS cwebp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(WEBP_BUILD_GIF2WEBP AND NOT GIF_FOUND)
|
|
||||||
unset(WEBP_BUILD_GIF2WEBP CACHE)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(WEBP_BUILD_GIF2WEBP OR WEBP_BUILD_IMG2WEBP)
|
if(WEBP_BUILD_GIF2WEBP OR WEBP_BUILD_IMG2WEBP)
|
||||||
parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/src/mux "WEBP_MUX_SRCS"
|
parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/src/mux "WEBP_MUX_SRCS"
|
||||||
"")
|
"")
|
||||||
@ -407,10 +411,6 @@ if(WEBP_BUILD_WEBP_JS)
|
|||||||
target_compile_definitions(webpdspdecode PUBLIC EMSCRIPTEN)
|
target_compile_definitions(webpdspdecode PUBLIC EMSCRIPTEN)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(WEBP_BUILD_ANIM_UTILS AND NOT GIF_FOUND)
|
|
||||||
unset(WEBP_BUILD_ANIM_UTILS CACHE)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(WEBP_BUILD_ANIM_UTILS)
|
if(WEBP_BUILD_ANIM_UTILS)
|
||||||
# anim_diff
|
# anim_diff
|
||||||
include_directories(${WEBP_DEP_IMG_INCLUDE_DIRS}
|
include_directories(${WEBP_DEP_IMG_INCLUDE_DIRS}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user