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
With CMake 4 the minimum support version is 3.5, and since the current
minimum version we set is 2.8.12, it will fail with the following
message:
CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
Compatibility with CMake < 3.5 has been removed from 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.
Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
However, instead of bumping the minimum version requirement to 3.5, bump
to a slightly higher 3.12 instead to be consistent with
examples/usdt_sample/.
Also update cmake_policy() calls due to this change, dropping CMP0057
since the OLD behavior is no longer supported anyway.
0 commit comments