diff options
author | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2006-10-21 09:56:36 +0000 |
---|---|---|
committer | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2006-10-21 09:56:36 +0000 |
commit | 015ca06395f0820b2c81e943fa9067e7084410cb (patch) | |
tree | 79d0df0ceac8f4bb0744547302bf2b7111c9372f | |
parent | 7d87c59aea815c6be72a6755bb288b56cf7849ad (diff) | |
download | extra-cmake-modules-015ca06395f0820b2c81e943fa9067e7084410cb.tar.gz extra-cmake-modules-015ca06395f0820b2c81e943fa9067e7084410cb.tar.bz2 |
This is not needed at all - it worked before without and now it doesn' work with msvc anymore!
cmake adds those libs automagically afaik
CCMAIL: mail@dipe.org
CCMAIL: kde-windows@kde.org
svn path=/trunk/KDE/kdelibs/; revision=597662
-rw-r--r-- | modules/FindKDEWIN32.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/FindKDEWIN32.cmake b/modules/FindKDEWIN32.cmake index 508d93af..ec3febe6 100644 --- a/modules/FindKDEWIN32.cmake +++ b/modules/FindKDEWIN32.cmake @@ -65,10 +65,10 @@ endif(MSVC) if (KDEWIN32_LIBRARY AND KDEWIN32_INCLUDE_DIR) set(KDEWIN32_FOUND TRUE) # add the winsock2 library - find_library(WIN32_USER32_LIBRARY NAMES user32 PATHS $ENV{WINDIR}/system32) - find_library(WIN32_SHELL32_LIBRARY NAMES shell32 PATHS $ENV{WINDIR}/system32) - find_library(WIN32_WS2_LIBRARY NAMES ws2_32 PATHS $ENV{WINDIR}/system32) - set(KDEWIN32_LIBRARIES "${KDEWIN32_LIBRARY} ${WIN32_USER32_LIBRARY} ${WIN32_SHELL32_LIBRARY} ${WIN32_WS2_LIBRARY}") + #find_library(WIN32_USER32_LIBRARY NAMES user32 PATHS $ENV{WINDIR}/system32) + #find_library(WIN32_SHELL32_LIBRARY NAMES shell32 PATHS $ENV{WINDIR}/system32) + #find_library(WIN32_WS2_LIBRARY NAMES ws2_32 PATHS $ENV{WINDIR}/system32) + #set(KDEWIN32_LIBRARIES "${KDEWIN32_LIBRARY} ${WIN32_USER32_LIBRARY} ${WIN32_SHELL32_LIBRARY} ${WIN32_WS2_LIBRARY}") if (MINGW) #mingw compiler |