diff options
author | Sebastian Sauer <mail@dipe.org> | 2006-10-21 18:19:18 +0000 |
---|---|---|
committer | Sebastian Sauer <mail@dipe.org> | 2006-10-21 18:19:18 +0000 |
commit | b920726e9d0a581ac7379305947622b882c3283e (patch) | |
tree | f1fa847c43bfb7efd169237ce5e23fa03bf9d38e | |
parent | 015ca06395f0820b2c81e943fa9067e7084410cb (diff) | |
download | extra-cmake-modules-b920726e9d0a581ac7379305947622b882c3283e.tar.gz extra-cmake-modules-b920726e9d0a581ac7379305947622b882c3283e.tar.bz2 |
ok, reactivate those part since actualy there exist a dbus_for_win (
http://sourceforge.net/project/showfiles.php?group_id=171968 ) which was not documented
anywhere. Thanks Laurent and Christian :)
svn path=/trunk/KDE/kdelibs/; revision=597820
-rw-r--r-- | modules/FindKDE4Internal.cmake | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 12f247b2..4c3409af 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -192,11 +192,10 @@ set(QT_MIN_VERSION "4.2.0") #this line includes FindQt4.cmake, which searches the Qt library and headers find_package(Qt4 REQUIRED) -if (NOT WIN32) - if (NOT QT_DBUSXML2CPP_EXECUTABLE) - message(FATAL_ERROR "Qt4 qdbusxml2cpp was not found. Make sure it has been built and installed by Qt") - endif (NOT QT_DBUSXML2CPP_EXECUTABLE) -endif (NOT WIN32) +if (NOT QT_DBUSXML2CPP_EXECUTABLE) + message(FATAL_ERROR "Qt4 qdbusxml2cpp was not found. Make sure it has been built and installed by Qt") +endif (NOT QT_DBUSXML2CPP_EXECUTABLE) + # Perl is required for building KDE software, find_package(Perl REQUIRED) |