-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
fixed #13343 - Bump cmake_minimum_required()
to 3.13
#7213
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked https://pkgs.org and the notes in #3596 and bumping it further up to 3.13 should be no problem. So the additional cmake_minimum_required()
is no longer required.
Please also update readme.md
. And there is several CMAKE_VERSION
checks which can be removed.
cbca244
to
45349b7
Compare
and do associated cleanups. Fixes #13343 Recent CMake versions emit: ``` CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.10 will be removed from a future version of CMake. Update the VERSION argument <min> value. Or, use the <min>...<max> syntax to tell CMake that the project requires at least <min> but has been updated to work with policies introduced by <max> or earlier. ```
45349b7
to
7e9c5fc
Compare
done |
cmake_minimum_required()
to 3.13
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@danmar you okay with this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
of course :-)
and do associated cleanups.
Fixes #13343
Recent CMake versions emit: