From 7500dd50ef9d0b625948933bfdb184abf61555bb Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Sun, 27 Apr 2008 07:35:21 -0400 Subject: BUG: don't fail with FATAL_ERROR if REQUIRED was not used Alex --- Modules/FindVTK.cmake | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Modules/FindVTK.cmake') diff --git a/Modules/FindVTK.cmake b/Modules/FindVTK.cmake index f79a7026a6..6e42ba3fd5 100644 --- a/Modules/FindVTK.cmake +++ b/Modules/FindVTK.cmake @@ -130,11 +130,11 @@ IF(VTK_FOUND) SET(USE_VTK_FILE ${VTK_USE_FILE}) ELSE(VTK_FOUND) # VTK not found, explain to the user how to specify its location. - IF(NOT VTK_FIND_QUIETLY) + IF(VTK_FIND_REQUIRED) MESSAGE(FATAL_ERROR ${VTK_DIR_MESSAGE}) - ELSE(NOT VTK_FIND_QUIETLY) - IF(VTK_FIND_REQUIRED) - MESSAGE(FATAL_ERROR ${VTK_DIR_MESSAGE}) - ENDIF(VTK_FIND_REQUIRED) - ENDIF(NOT VTK_FIND_QUIETLY) + ELSE(VTK_FIND_REQUIRED) + IF(NOT VTK_FIND_QUIETLY) + MESSAGE(STATUS ${VTK_DIR_MESSAGE}) + ENDIF(NOT VTK_FIND_QUIETLY) + ENDIF(VTK_FIND_REQUIRED) ENDIF(VTK_FOUND) -- cgit v1.2.1