1@PACKAGE_INIT@
2
3#include(CMakeFindDependencyMacro)
4# NOTE Had to use find_package because find_dependency does not support COMPONENTS or MODULE until 3.8.0
5#find_package(Boost 1.55 REQUIRED COMPONENTS regex)
6
7# prevent including it several times
8if(NOT @PROJECT_NAME@_FOUND)
9   include("@PACKAGE_MODEST_INSTALL_CONFIGDIR@/@PROJECT_NAME@.cmake")
10   check_required_components(@PROJECT_NAME@})
11endif()