diff options
author | David Johnson <david@usermode.org> | 2008-02-02 21:14:08 +0000 |
---|---|---|
committer | David Johnson <david@usermode.org> | 2008-02-02 21:14:08 +0000 |
commit | 5950ab2665426d9fad7a6c81a740c39a215a720d (patch) | |
tree | c23ba41b335bd393e6166d7d0f8f0ea951108840 | |
parent | c32d4c98e1d154025d68baa0fa837e99fce86b15 (diff) | |
download | extra-cmake-modules-5950ab2665426d9fad7a6c81a740c39a215a720d.tar.gz extra-cmake-modules-5950ab2665426d9fad7a6c81a740c39a215a720d.tar.bz2 |
Place Qt includes before platform/X11 includes
svn path=/trunk/KDE/kdelibs/; revision=770126
-rw-r--r-- | modules/FindKDE4Internal.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index ef6578c1..c1981470 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -1030,7 +1030,7 @@ endif (NOT KDE4Internal_FIND_QUIETLY) #add the found Qt and KDE include directories to the current include path #the ${KDE4_INCLUDE_DIR}/KDE directory is for forwarding includes, eg. #include <KMainWindow> -set(KDE4_INCLUDES ${KDE4_INCLUDE_DIR} ${KDE4_INCLUDE_DIR}/KDE ${_KDE4_PLATFORM_INCLUDE_DIRS} ${QT_INCLUDES} ) +set(KDE4_INCLUDES ${KDE4_INCLUDE_DIR} ${KDE4_INCLUDE_DIR}/KDE ${QT_INCLUDES} ${_KDE4_PLATFORM_INCLUDE_DIRS} ) set(KDE4_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS} -DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT -DKDE_DEPRECATED_WARNINGS ) |