From 744aa2a76ad165d4652e285a80cc6ad78b9d01fd Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Sat, 21 Nov 2020 15:02:07 +0100 Subject: [PATCH] do not compile features.... --- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e4955c949..a4746f37c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -87,13 +87,13 @@ set(MAPNIK_SOURCES ) set(COMPILE_SRC ${MAPNIK_SOURCES}) -if(NOT USE_JPEG) +if(USE_JPEG) list(APPEND COMPILE_SRC jpeg_reader.cpp) endif() -if(NOT USE_PNG) +if(USE_PNG) list(APPEND COMPILE_SRC png_reader.cpp) endif() -if(NOT USE_TIFF) +if(USE_TIFF) list(APPEND COMPILE_SRC tiff_reader.cpp) endif()