Skip to content

Commit

Permalink
Merge pull request #294 from kochol/patch-3
Browse files Browse the repository at this point in the history
Updated the cmake.check_exists function
  • Loading branch information
floooh authored Feb 14, 2024
2 parents 3064811 + b96c399 commit 55f8f17
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 55f8f17

Please sign in to comment.