Skip to content

GNU-FindBinUtils: Avoid setting policy CMP0054

Brad King requested to merge brad.king/cmake:GNU-FindBinUtils-no-policy into master

The cmake_policy(SET) call triggers CMP0011 warnings when this module is used in a project that does not set CMP0011 to NEW. We could avoid these with a cmake_policy PUSH/POP pair, but it is simpler to adjust our code to not trigger CMP0054 in the first place.

Merge request reports