summaryrefslogtreecommitdiffstats
path: root/Modules/FindVTK.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-06-06 13:58:02 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-06-06 13:58:02 (GMT)
commit3ce9496a7424151ed2581e6c508c6666ab48e556 (patch)
tree20b53c4973934fb214cee04022cc562a72d4037e /Modules/FindVTK.cmake
parent65dcf074a17fb54bb22b37e1b3b74d33cba58ca9 (diff)
downloadCMake-3ce9496a7424151ed2581e6c508c6666ab48e556.zip
CMake-3ce9496a7424151ed2581e6c508c6666ab48e556.tar.gz
CMake-3ce9496a7424151ed2581e6c508c6666ab48e556.tar.bz2
BUG: When VTK is not found, it should be fatal error
Diffstat (limited to 'Modules/FindVTK.cmake')
-rw-r--r--Modules/FindVTK.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindVTK.cmake b/Modules/FindVTK.cmake
index 257b6b8..69abc5d 100644
--- a/Modules/FindVTK.cmake
+++ b/Modules/FindVTK.cmake
@@ -123,6 +123,6 @@ IF(VTK_FOUND)
ELSE(VTK_FOUND)
# VTK not found, explain to the user how to specify its location.
IF(NOT VTK_FIND_QUIETLY)
- MESSAGE(${VTK_DIR_MESSAGE})
+ MESSAGE(FATAL_ERROR ${VTK_DIR_MESSAGE})
ENDIF(NOT VTK_FIND_QUIETLY)
ENDIF(VTK_FOUND)