From e0012bea23edcaeac8cfaac9c72f27976a4616ea Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Sat, 4 Feb 2017 00:04:23 -0800 Subject: [PATCH] CMake: only use libwebpdecoder for building dwebp Change-Id: Ia972c063711529d1e9a7fa79cf250d0764840e6f --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa023935..d42ad7d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -167,7 +167,7 @@ if(WEBP_BUILD_DWEBP) parse_Makefile_am(${CMAKE_CURRENT_SOURCE_DIR}/examples "DWEBP_SRCS" "dwebp") add_executable(dwebp ${DWEBP_SRCS}) - target_link_libraries(dwebp exampleutil imagedec imageenc webp) + target_link_libraries(dwebp exampleutil imagedec imageenc webpdecoder) endif() if(WEBP_BUILD_CWEBP)