From e4b370839f36c271d7f41718070ed30ed89aeebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 5 Jun 2020 09:30:12 +0200 Subject: [PATCH] tde_create_dcop_kidl: Use dcopildng as the default instead of dcopidl. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- modules/TDEMacros.cmake | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/TDEMacros.cmake b/modules/TDEMacros.cmake index 75bdf15..2182844 100644 --- a/modules/TDEMacros.cmake +++ b/modules/TDEMacros.cmake @@ -488,14 +488,11 @@ macro( tde_create_dcop_kidl _kidl _kidl_source ) if( NOT TARGET ${_kidl_target} ) add_custom_command( OUTPUT ${_kidl_output} - COMMAND ${KDE3_DCOPIDL_EXECUTABLE} + COMMAND ${KDE3_DCOPIDLNG_EXECUTABLE} ARGS ${_kidl_source} > ${_kidl_output} DEPENDS ${_kidl_source} ) add_custom_target( ${_kidl_target} DEPENDS ${_kidl_output} ) - if( NOT TDE_FOUND ) - add_dependencies( ${_kidl_target} dcopidl ) - endif( ) endif( ) set( ${_kidl} ${_kidl_output} )