Config.cmake.in 366 B

1234567891011
  1. @PACKAGE_INIT@
  2. set(_supported_components Addition SquareRoot)
  3. foreach(_comp ${MathFunctions_FIND_COMPONENTS})
  4. if (NOT _comp IN_LIST _supported_components)
  5. set(MathFunctions_FOUND False)
  6. set(MathFunctions_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
  7. endif()
  8. include("${CMAKE_CURRENT_LIST_DIR}/MathFunctions${_comp}Targets.cmake")
  9. endforeach()