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
fix CMake version check for OpenSSL 1.1+ on Windows (#973)
* fix cmake version check for windows openssl 1.1+
As it stands, this check does not function as intended on the CMake versions that I tried (3.22 and 3.23).
I suspect it would not work from CMake 3.10 until CMake 3.70 (were such a version ever to exist); the comparison appears to a floating-point comparison instead of a version comparison.
* use available version comparison operator
VERSION_GREATER_EQUAL is only available in CMake 3.7+, and we currently need to support older CMake versions than that. Thus we will invert the logic and use VERSION_LESS instead
0 commit comments