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
When including the library via add_subdirectory() in own CMakeLists.txt, I get:
CMake Deprecation Warning at ordered-map/CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 3.5 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
Would it be possible to resolve this in the next library update?
For reference, my CMake version is 3.30.2
The text was updated successfully, but these errors were encountered:
Thanks - this fix 5bbd647 worked well (for a while). Unfortunately, the newest CMake (3.31) is unhappy again, now requiring 3.10 at least.
"Changed in version 3.31: Compatibility with versions of CMake older than 3.10 is deprecated. Calls to cmake_minimum_required(VERSION) or cmake_policy(VERSION) that do not specify at least 3.10 as their policy version (optionally via ...) will produce a deprecation warning in CMake 3.31 and above."
This is a minor issue, of course, but an annoyance nevertheless.
When including the library via
add_subdirectory()
in ownCMakeLists.txt
, I get:Would it be possible to resolve this in the next library update?
For reference, my CMake version is
3.30.2
The text was updated successfully, but these errors were encountered: