-
Notifications
You must be signed in to change notification settings - Fork 46
Update upper end of cmake_minimum_required range #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update upper end of cmake_minimum_required range #241
Conversation
CMake 3.31 is dropping support for cmake_minimum_required for versions less than 3.10, but adding 3.25 (which is tested on math-ci) indicates that we test compatibility with 3.25, which causes those warnings to be suppressed.
@pfultz2 I updated CMP0079 to NEW, as it throws a deprecation error when adding the upper end of the range. Is there a reason that needed to have the old behaviour? |
Either behavior works for ROCMTest module, however, I dont know if some downstream component is relying on the old behavior. If it doesnt break anyone, then using NEW behaviour is a better choice. |
CMake 3.31 is dropping support for cmake_minimum_required for versions less than 3.10, but adding 3.25 (which is tested on math-ci) indicates that we test compatibility with 3.25, which causes those warnings to be suppressed.