From f0b67bbb55584c7c48dd2e0a20823c3c3ed0dc75 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sun, 29 Oct 2023 21:04:45 +0100
Subject: [PATCH] cmake: disable tiff options as much as possible
---
CMakeLists.txt | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cdd54950..da40e717 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -50,13 +50,13 @@ else()
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
endif()
-option(tiff-tools "build TIFF tools" ON)
+option(tiff-tools "build TIFF tools" OFF)
option(tiff-tools-unsupported "build unsupported TIFF tools" OFF)
-option(tiff-tests "build TIFF tests" ON)
-option(tiff-contrib "build TIFF contrib" ON)
-option(tiff-docs "build TIFF documentation" ON)
+option(tiff-tests "build TIFF tests" OFF)
+option(tiff-contrib "build TIFF contrib" OFF)
+option(tiff-docs "build TIFF documentation" OFF)
option(tiff-deprecated "build TIFF deprecated features" OFF)
-option(tiff-install "install TIFF targets" ${TIFF_INSTALL_DEFAULT})
+option(tiff-install "install TIFF targets" OFF)
# Disable deprecated features to ensure clean build
if (tiff-deprecated)