diff options
author | Stephan Kulow <coolo@kde.org> | 2006-11-09 10:07:41 +0000 |
---|---|---|
committer | Stephan Kulow <coolo@kde.org> | 2006-11-09 10:07:41 +0000 |
commit | 3883418950a1f3dd7469601ed69266f8916b2c23 (patch) | |
tree | 079ad9df99b4bdfa66659c0e4b1b374fcdbefb4c | |
parent | aae517b4cf8747868e564ad545d41ec42e667be1 (diff) | |
download | extra-cmake-modules-3883418950a1f3dd7469601ed69266f8916b2c23.tar.gz extra-cmake-modules-3883418950a1f3dd7469601ed69266f8916b2c23.tar.bz2 |
let's try if it's really that simple :)
svn path=/trunk/KDE/kdelibs/; revision=603513
-rw-r--r-- | modules/FindKDE4Internal.cmake | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 62f4006a..389edd0c 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -727,8 +727,10 @@ if (CMAKE_C_COMPILER MATCHES "icc") endif (CMAKE_C_COMPILER MATCHES "icc") -# it seems we prefer not to use a different postfix for debug libs, Alex -# SET(CMAKE_DEBUG_POSTFIX "_debug") +# it seems we prefer not to use a different postfix for debug libs outside of Windows +if (WIN32) + SET(CMAKE_DEBUG_POSTFIX "d") +endif (WIN32) ########### end of platform specific stuff ########################## |