12 lines
394 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
@PACKAGE_INIT@
2022-03-29 21:10:50 +02:00
set(_MathFunctions_supported_components Addition SquareRoot)
2021-09-14 00:13:48 +02:00
foreach(_comp ${MathFunctions_FIND_COMPONENTS})
2022-03-29 21:10:50 +02:00
if (NOT _comp IN_LIST _MathFunctions_supported_components)
2021-09-14 00:13:48 +02:00
set(MathFunctions_FOUND False)
set(MathFunctions_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/MathFunctions${_comp}Targets.cmake")
endforeach()