aboutsummaryrefslogtreecommitdiff
path: root/modules/FindKDEWIN32.cmake
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2006-03-20 21:09:34 +0000
committerAllen Winter <winter@kde.org>2006-03-20 21:09:34 +0000
commit0154f664ebf11b8a698d94a4fd417cbff97be81a (patch)
treeb518433fb80db9a2791bdb2dc8ecd3f780f7fb58 /modules/FindKDEWIN32.cmake
parent191846e3e21c697c28bd5c8a166edeb4072161e3 (diff)
downloadextra-cmake-modules-0154f664ebf11b8a698d94a4fd417cbff97be81a.tar.gz
extra-cmake-modules-0154f664ebf11b8a698d94a4fd417cbff97be81a.tar.bz2
minor cleanups: indenting, adding newline to end of file, etc.
svn path=/trunk/KDE/kdelibs/; revision=520791
Diffstat (limited to 'modules/FindKDEWIN32.cmake')
-rw-r--r--modules/FindKDEWIN32.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindKDEWIN32.cmake b/modules/FindKDEWIN32.cmake
index 2c981cc0..301f756f 100644
--- a/modules/FindKDEWIN32.cmake
+++ b/modules/FindKDEWIN32.cmake
@@ -33,15 +33,15 @@ if (KDEWIN32_LIBRARY AND KDEWIN32_INCLUDE_DIR)
# add the winsock2 library, using find_library or something like this would probably be better
set(KDEWIN32_LIBRARIES ${KDEWIN32_LIBRARY} user32 shell32 ws2_32)
- if(MINGW)
+ if (MINGW)
#mingw compiler
set(KDEWIN32_INCLUDES ${KDEWIN32_INCLUDE_DIR} ${KDEWIN32_INCLUDE_DIR}/mingw ${QT_INCLUDES})
- else(MINGW)
+ else (MINGW)
# msvc compiler
# add the MS SDK include directory if available
MACRO_GETENV_WIN_PATH(MSSDK_DIR MSSDK)
set(KDEWIN32_INCLUDES ${KDEWIN32_INCLUDE_DIR} ${KDEWIN32_INCLUDE_DIR}/msvc ${QT_INCLUDES} ${MSSDK_DIR})
- endif(MINGW)
+ endif (MINGW)
endif (KDEWIN32_LIBRARY AND KDEWIN32_INCLUDE_DIR)