diff options
author | Brad King <brad.king@kitware.com> | 2006-02-14 14:56:59 +0000 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-14 14:56:59 +0000 |
commit | 27c23eace05c4708938ba4c69e8ccc5ff110e4bb (patch) | |
tree | 1ad6d1783d2fc5066d5954a6f5653e5ca7143b18 | |
parent | 722057ec2ba7b629a5ead686401f0bb8ae53898e (diff) | |
download | extra-cmake-modules-27c23eace05c4708938ba4c69e8ccc5ff110e4bb.tar.gz extra-cmake-modules-27c23eace05c4708938ba4c69e8ccc5ff110e4bb.tar.bz2 |
Restore FATAL_ERROR when KDEWIN32 is not found but is required.
svn path=/trunk/KDE/kdelibs/; revision=509380
-rw-r--r-- | modules/FindKDEWIN32.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDEWIN32.cmake b/modules/FindKDEWIN32.cmake index cf8344ee..a71e04d2 100644 --- a/modules/FindKDEWIN32.cmake +++ b/modules/FindKDEWIN32.cmake @@ -51,7 +51,7 @@ IF (KDEWIN32_FOUND) ENDIF (NOT KDEWIN32_FIND_QUIETLY) ELSE (KDEWIN32_FOUND) IF (KDEWIN32_FIND_REQUIRED) - MESSAGE(SEND_ERROR "Could not find KDEWIN32 library\nPlease build and install kdelibs/win/ first") + MESSAGE(FATAL_ERROR "Could not find KDEWIN32 library\nPlease build and install kdelibs/win/ first") ENDIF (KDEWIN32_FIND_REQUIRED) ENDIF (KDEWIN32_FOUND) |