You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation fails with Unknown arguments specified with CMake versions < 3.7. The VERSION_GREATER_EQUAL command was introduced in CMake version 3.7 along with some other commands like GREATER_EQUAL, etc.
Error log:
[ 0%] Performing update step for'fmt'
Current branch master is up to date.
[ 1%] Performing configure step for'fmt'
-- CMake version: 3.5.1
CMake Error at CMakeLists.txt:86 (if):
if given arguments:
"CMAKE_CXX_STANDARD""GREATER_EQUAL""20""AND""CMAKE_CXX_COMPILER_VERSION""VERSION_GREATER_EQUAL""19.29.30036"
Unknown arguments specified
This is caused by changes in the Module support by #2283 8 days ago:
@vitaut Done! I think the solution proposed in the PR is fine, there is no CXX standards 18 & 19 so I kept it like GREATER 17. Same with the MSVC version, I downgraded it from 19.29.30036 to 19.29.30035 so I think it should still work.
Compilation fails with
Unknown arguments specified
with CMake versions < 3.7. TheVERSION_GREATER_EQUAL
command was introduced in CMake version 3.7 along with some other commands likeGREATER_EQUAL
, etc.Error log:
This is caused by changes in the Module support by #2283 8 days ago:
This is fixed by changing:
GREATER_EQUAL 20
toGREATER 17
VERSION_GREATER_EQUAL 19.29.30036
toVERSION_GREATER 19.29.30035
The text was updated successfully, but these errors were encountered: