From be4bf94446b6286a5dffdde85fc1d21448f4edff Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 1 Oct 2024 14:49:41 +0300 Subject: [PATCH] cmake/tuklib_large_file_support.cmake: Add a missing include v5.2 didn't build with CMake. Other branches had include(CMakePushCheckState) in top-level CMakeLists.txt which made the build work. Fixes: 597f49b61475438a43a417236989b2acc968a686 --- cmake/tuklib_large_file_support.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/tuklib_large_file_support.cmake b/cmake/tuklib_large_file_support.cmake index 4ed1d091..7c11969c 100644 --- a/cmake/tuklib_large_file_support.cmake +++ b/cmake/tuklib_large_file_support.cmake @@ -14,6 +14,7 @@ ############################################################################# include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake") +include(CMakePushCheckState) include(CheckCSourceCompiles) function(tuklib_large_file_support TARGET_OR_ALL)