diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-11-12 19:24:32 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-11-12 19:24:32 +0000 |
commit | 047a232448474658f46ad5f46d81935455fb517e (patch) | |
tree | 1a2c273f71c9f365bad62a6f52e693672aab77c4 | |
parent | 8dd916a290574383820181c0c9e2e163f3227003 (diff) | |
download | extra-cmake-modules-047a232448474658f46ad5f46d81935455fb517e.tar.gz extra-cmake-modules-047a232448474658f46ad5f46d81935455fb517e.tar.bz2 |
-fix error message for cygwin
Alex
svn path=/trunk/KDE/kdelibs/; revision=735844
-rw-r--r-- | modules/FindKDE4Internal.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index f41aea04..5755836d 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -608,7 +608,7 @@ endif (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) if (WIN32) if(CYGWIN) - message(FATAL_ERROR "Cygwin NOT supported, please edit FindKDE4.cmake to enable it") + message(FATAL_ERROR "Cygwin is NOT supported, use mingw or MSVC to build KDE4.") endif(CYGWIN) find_package(KDEWIN32 REQUIRED) |