You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
366 B
12 lines
366 B
3 years ago
|
@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()
|