Skip to content

small patch to CMake 3.5.2 to add support for Boost 1.62

The copy of FindBoost.cmake in CMake 3.5.2 knows about components dependencies in Boost up to 1.62, which means that building against that version of Boost produces warnings like:

CMake Warning at /usr/share/cmake-3.5/Modules/FindBoost.cmake:725 (message):
  Imported targets not available for Boost version 106200
Call Stack (most recent call first):
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:763 (_Boost_COMPONENT_DEPENDENCIES)
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:1332 (_Boost_MISSING_DEPENDENCIES)
  GaudiHive/src/bin/CMakeLists.txt:3 (find_package)

I added a patch to add the support for Boost 1.62 (practically the same as https://github.com/Kitware/CMake/commit/9bb8ac8e which will be in 3.7.0).

Merge request reports