-
Notifications
You must be signed in to change notification settings - Fork 429
update minimum version of cmake now that version 3.5 of cmake has been deprecated #632
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
Conversation
update minimum version of cmake now that version 3.5 of cmake has been deprecated
Update CMakeLists.txt
Why would we ever want to do that? I think it is good that our software still builds using older build systems. |
this is the cmake config error with [cmake] CMake Error at vendor/github.com/probonopd/linuxdeployqt/CMakeLists.txt:4 (cmake_minimum_required): even after my change to update to the minimum version supported by cmake (currently 3.5), we don't get an error but a warning: [cmake] CMake Deprecation Warning at vendor/github.com/probonopd/linuxdeployqt/CMakeLists.txt:4 (cmake_minimum_required): So, the latest version of cmake 4.0.0. no longer supports versions earlier than 3.5 |
GitHub actions ubuntu runner was recently updated to include CMake version 4.0.0 - see https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250330.1
You must decide whether to support legacy CMake versions or newer versions. The majority of developers will have a newer version of CMake installed. |
update minimum version of cmake to 3.10 - version < 3.5 have been deprecated - version < 3.10 will be next removed
Closing in favor of #633 |
No description provided.