diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2006-05-18 15:49:30 +0000 |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2006-05-18 15:49:30 +0000 |
commit | 629745908dbb7203d356cae1798e28dbd34a0f65 (patch) | |
tree | 258bcc0ceeea43a0f04f3e0162f89a9032ab01e5 | |
parent | f3a9780171e0b99fdefd7d6723f6da0d5cf40b7d (diff) | |
download | extra-cmake-modules-629745908dbb7203d356cae1798e28dbd34a0f65.tar.gz extra-cmake-modules-629745908dbb7203d356cae1798e28dbd34a0f65.tar.bz2 |
change error message
svn path=/trunk/KDE/kdelibs/; revision=542209
-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 bec51304..eb0bfbbf 100644 --- a/modules/FindKDEWIN32.cmake +++ b/modules/FindKDEWIN32.cmake @@ -37,7 +37,7 @@ if(MSVC) if(MSVC_IDE) # the ide needs the debug and release version if( NOT KDEWIN32_LIBRARY_DEBUG OR NOT KDEWIN32_LIBRARY_RELEASE) - message(FATAL_ERROR "Could NOT find the debug AND release version of the KDEWIN32 library.\nYou need to have both to use MSVC projects.\nPlease build and install both kdelibs/win/ libraries first:\nUse a project generator or the cmake parameter\n-DCMAKE_BUILD_TYPE=release for building the release version nmake makefiles.") + message(FATAL_ERROR "\nCould NOT find the debug AND release version of the KDEWIN32 library.\nYou need to have both to use MSVC projects.\nPlease build and install both kdelibs/win/ libraries first.\n") endif( NOT KDEWIN32_LIBRARY_DEBUG OR NOT KDEWIN32_LIBRARY_RELEASE) SET(KDEWIN32_LIBRARY optimized ${KDEWIN32_LIBRARY_RELEASE} debug ${KDEWIN32_LIBRARY_DEBUG}) else(MSVC_IDE) |