diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-09-15 21:49:17 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-09-15 21:49:17 +0000 |
commit | 79e98ba6c22e9e1dd051c4c9238363d98a73c6f6 (patch) | |
tree | 502b6b5ec28676d53d5c80c57a9f4ad621d5615a | |
parent | 456217a03c48ff376e534b5237a2b9dde14ef46b (diff) | |
download | extra-cmake-modules-79e98ba6c22e9e1dd051c4c9238363d98a73c6f6.tar.gz extra-cmake-modules-79e98ba6c22e9e1dd051c4c9238363d98a73c6f6.tar.bz2 |
readd -DQT_NO_STL for much faster compile times
you can use REMOVE_DEFINITIONS(-DQT_NO_STL) in your project if you don't want it there
Alex
svn path=/trunk/KDE/kdelibs/; revision=584948
-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 82a7ae3f..7ff65225 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -719,7 +719,7 @@ endif (NOT KDE4Internal_FIND_QUIETLY) #add the found Qt and KDE include directories to the current include path set(KDE4_INCLUDES ${QT_INCLUDES} ${KDE4_INCLUDE_DIR} ${_KDE4_PLATFORM_INCLUDE_DIRS} ) -set(KDE4_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS} -DQT_NO_CAST_TO_ASCII -D_REENTRANT -DKDE_DEPRECATED_WARNINGS ) +set(KDE4_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS} -DQT_NO_STL -DQT_NO_CAST_TO_ASCII -D_REENTRANT -DKDE_DEPRECATED_WARNINGS ) if (NOT _kde4_uninstall_rule_created) set(_kde4_uninstall_rule_created TRUE) |