aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2007-06-08 15:50:43 +0000
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>2007-06-08 15:50:43 +0000
commit96876e082e44e6ee9a6e7f32722d52a8a95e4a60 (patch)
tree77a19f317964df988e7c4d34f072fa5339813940
parent7a881261831736b6702cf5b9e636060da0ac58d1 (diff)
downloadextra-cmake-modules-96876e082e44e6ee9a6e7f32722d52a8a95e4a60.tar.gz
extra-cmake-modules-96876e082e44e6ee9a6e7f32722d52a8a95e4a60.tar.bz2
revert 'SET(CMAKE_DEBUG_POSTFIX "d")' for win32
-> the comment 'does not work atm' is corect... svn path=/trunk/KDE/kdelibs/; revision=672966
-rw-r--r--modules/FindKDE4Internal.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake
index df3db208..dced461c 100644
--- a/modules/FindKDE4Internal.cmake
+++ b/modules/FindKDE4Internal.cmake
@@ -773,7 +773,7 @@ endif (CMAKE_C_COMPILER MATCHES "icc")
# we prefer to use a different postfix for debug libs only on Windows
# does not work atm
if (WIN32)
- SET(CMAKE_DEBUG_POSTFIX "d")
+ SET(CMAKE_DEBUG_POSTFIX "")
endif (WIN32)
########### end of platform specific stuff ##########################