From ac95449ff5234fe54df9a82704b58ea66dc71bb4 Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Sat, 9 Oct 2021 09:40:44 +0200 Subject: [PATCH] [CMake] fix critical webp init --- src/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5017206ff..7e742c288 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -90,6 +90,9 @@ endif() if(USE_TIFF) list(APPEND COMPILE_SRC tiff_reader.cpp) endif() +if(USE_WEBP) + list(APPEND COMPILE_SRC webp_reader.cpp) +endif() set(AGG_COMPILE_SRC ../deps/agg/src/agg_arc.cpp