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