aboutsummaryrefslogtreecommitdiff
path: root/modules/KDE4Macros.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2006-07-02 09:04:54 +0000
committerAlexander Neundorf <neundorf@kde.org>2006-07-02 09:04:54 +0000
commit1478579b7e8197f70e4941c8ce4d9660d3e20acd (patch)
tree2e683530ec9ca157d96cae71d36d45b28da11049 /modules/KDE4Macros.cmake
parentd79f1aa9b6c62c7d05e61b2a9ed2296a49234891 (diff)
downloadextra-cmake-modules-1478579b7e8197f70e4941c8ce4d9660d3e20acd.tar.gz
extra-cmake-modules-1478579b7e8197f70e4941c8ce4d9660d3e20acd.tar.bz2
-add KDE4_ADD_DCOP_SKELS/STUBS again, but make them simply bail out with FATAL_ERROR, this should
avoid some frustration about not even the buildsystem working due to the switch to dbus Alex svn path=/trunk/KDE/kdelibs/; revision=557037
Diffstat (limited to 'modules/KDE4Macros.cmake')
-rw-r--r--modules/KDE4Macros.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake
index c0613988..9ec851d7 100644
--- a/modules/KDE4Macros.cmake
+++ b/modules/KDE4Macros.cmake
@@ -565,3 +565,13 @@ MACRO (KDE4_ADD_WIDGET_FILES _sources)
ENDMACRO (KDE4_ADD_WIDGET_FILES)
+MACRO(KDE4_ADD_DCOP_SKELS)
+ MESSAGE(FATAL_ERROR "There is a call to KDE4_ADD_DCOP_SKELS() in one of the CMakeLists.txt, but DCOP is no longer supported by KDE4.
+ Please remove it and port to DBUS")
+ENDMACRO(KDE4_ADD_DCOP_SKELS)
+
+MACRO(KDE4_ADD_DCOP_STUBS)
+ MESSAGE(FATAL_ERROR "There is a call to KDE4_ADD_DCOP_STUBS() in one of the CMakeLists.txt, but DCOP is no longer supported by KDE4.
+ Please remove it and port to DBUS")
+ENDMACRO(KDE4_ADD_DCOP_STUBS)
+