diff --git a/modules/find/tests/CMakeLists.txt b/modules/find/tests/CMakeLists.txt index edb3ae8ade8ced981cbc5c73f177476863300de8..789aefec71cb7772febfd4fda72abef0b92129a2 100644 --- a/modules/find/tests/CMakeLists.txt +++ b/modules/find/tests/CMakeLists.txt @@ -35,16 +35,25 @@ foreach(_library ${PACKAGES}) else() message(WARNING "${_library}_LIBRARIES not found: ${${_library}_LIBRARIES}") endif() + if (${_library}_LIBRARIES_DEP) + message(STATUS "${_library}_LIBRARIES_DEP found: ${${_library}_LIBRARIES_DEP}") + endif() if (${_library}_LIBRARY_DIRS) message(STATUS "${_library}_LIBRARY_DIRS found: ${${_library}_LIBRARY_DIRS}") else() message(WARNING "${_library}_LIBRARY_DIRS not found: ${${_library}_LIBRARY_DIRS}") endif() + if (${_library}_LIBRARY_DIRS_DEP) + message(STATUS "${_library}_LIBRARY_DIRS_DEP found: ${${_library}_LIBRARY_DIRS_DEP}") + endif() if (${_library}_INCLUDE_DIRS) message(STATUS "${_library}_INCLUDE_DIRS found: ${${_library}_INCLUDE_DIRS}") else() message(WARNING "${_library}_INCLUDE_DIRS not found: ${${_library}_INCLUDE_DIRS}") endif() + if (${_library}_INCLUDE_DIRS_DEP) + message(STATUS "${_library}_INCLUDE_DIRS_DEP found: ${${_library}_INCLUDE_DIRS_DEP}") + endif() else() message(FATAL_ERROR "${_library} NOT FOUND !!") endif()