diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-06-06 13:58:02 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-06-06 13:58:02 (GMT) |
commit | 3ce9496a7424151ed2581e6c508c6666ab48e556 (patch) | |
tree | 20b53c4973934fb214cee04022cc562a72d4037e /Modules/FindVTK.cmake | |
parent | 65dcf074a17fb54bb22b37e1b3b74d33cba58ca9 (diff) | |
download | CMake-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.cmake | 2 |
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) |