diff options
author | Will Stephenson <wstephenson@kde.org> | 2006-07-03 10:24:17 +0000 |
---|---|---|
committer | Will Stephenson <wstephenson@kde.org> | 2006-07-03 10:24:17 +0000 |
commit | 36eb7bcb18f49cb2bb2e59166660384754db51a4 (patch) | |
tree | b5c8215cc157c3729f523710aba1f087cba8aeb4 | |
parent | fb6cef34e4f2732dd7a5ec6876e071b91ab02203 (diff) | |
download | extra-cmake-modules-36eb7bcb18f49cb2bb2e59166660384754db51a4.tar.gz extra-cmake-modules-36eb7bcb18f49cb2bb2e59166660384754db51a4.tar.bz2 |
Make the DCOP porting warnings more useful
svn path=/trunk/KDE/kdelibs/; revision=557455
-rw-r--r-- | modules/KDE4Macros.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index c43ccd2e..952f59b0 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -567,12 +567,12 @@ 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") + MESSAGE(FATAL_ERROR "There is a call to KDE4_ADD_DCOP_SKELS() in the CMakeLists.txt for '${ARGV0}', 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") + MESSAGE(FATAL_ERROR "There is a call to KDE4_ADD_DCOP_STUBS() in the CMakeLists.txt for '${ARGV0}', but DCOP is no longer supported by KDE4. + Please remove it and port to DBUS.") ENDMACRO(KDE4_ADD_DCOP_STUBS) |