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.
15 lines
368 B
15 lines
368 B
5 years ago
|
|
||
|
@PACKAGE_INIT@
|
||
|
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
|
||
|
function(find_external_dependency name)
|
||
|
set(${name}_ROOT "" CACHE PATH "Root directory to find ${name}")
|
||
|
mark_as_advanced(${name}_DIR)
|
||
|
find_dependency(${name} PATHS ${${name}_ROOT} REQUIRED)
|
||
|
endfunction()
|
||
|
|
||
|
find_external_dependency(MathFunctions)
|
||
|
|
||
|
include ( "${CMAKE_CURRENT_LIST_DIR}/ConsumerTargets.cmake" )
|