From 2c4e678664d215ba5cc57db26a643365b5a79c0e Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Mon, 9 Dec 2024 16:05:24 +0100 Subject: [PATCH] Default to build heif support Heif is now being widely used because of android and iphones and it's not really nice to discover that even if I have the library to handle heif, it's not compilling. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebdc0d6..6a5e0c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ set_package_properties(libavif PROPERTIES PURPOSE "Required for the QImage plugin for AVIF images" ) -option(KIMAGEFORMATS_HEIF "Enable plugin for HEIF format" OFF) +option(KIMAGEFORMATS_HEIF "Enable plugin for HEIF format" ON) if(KIMAGEFORMATS_HEIF) pkg_check_modules(LibHeif IMPORTED_TARGET libheif>=1.10.0) endif()