From b96c399e7cf9f56f9189ef6dceb4d5e4dfc14fa8 Mon Sep 17 00:00:00 2001 From: CyrusGP Date: Tue, 13 Feb 2024 10:04:49 -0800 Subject: [PATCH] Update the cmake.check_exists I updated the cmake.check_exists function to check against cmake 3.21 as it is needed for lastest fips builds. --- mod/tools/cmake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/tools/cmake.py b/mod/tools/cmake.py index 846afa6..8c74918 100644 --- a/mod/tools/cmake.py +++ b/mod/tools/cmake.py @@ -6,10 +6,10 @@ name = 'cmake' platforms = ['linux', 'osx', 'win'] optional = False -not_found = 'please install cmake 2.8 or newer' +not_found = 'please install cmake 3.21 or newer' #------------------------------------------------------------------------------ -def check_exists(fips_dir, major=2, minor=8) : +def check_exists(fips_dir, major=3, minor=21) : """test if cmake is in the path and has the required version :returns: True if cmake found and is the required version