Skip to content

Commit

Permalink
Update the cmake.check_exists
Browse files Browse the repository at this point in the history
I updated the cmake.check_exists function to check against cmake 3.21 as it is needed for lastest fips builds.
  • Loading branch information
kochol committed Feb 13, 2024
1 parent 3064811 commit b96c399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/tools/cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b96c399

Please sign in to comment.