From 972b980c05702226bb9da25a55d1ea9efe39c2c1 Mon Sep 17 00:00:00 2001 From: samelian Date: Thu, 20 Jan 2011 00:07:09 +0000 Subject: [PATCH] [kde-common/cmake] tde_uic.cmake: copy .ui file locally and run tqt-replace before uic git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common@1215873 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- cmake/modules/tde_uic.cmake | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cmake/modules/tde_uic.cmake b/cmake/modules/tde_uic.cmake index 15e4709..9f04776 100644 --- a/cmake/modules/tde_uic.cmake +++ b/cmake/modules/tde_uic.cmake @@ -11,9 +11,14 @@ get_filename_component( _ui_basename ${UI_FILE} NAME_WE ) +# FIXME this will working only on out-of-source mode +set( local_ui_file ${_ui_basename}.ui ) +configure_file( ${UI_FILE} ${local_ui_file} COPYONLY ) +execute_process( COMMAND tqt-replace ${local_ui_file} ) + execute_process( COMMAND ${QT_UIC_EXECUTABLE} -nounload -tr tr2i18n - ${UI_FILE} + ${local_ui_file} OUTPUT_VARIABLE _ui_h_content ) if( _ui_h_content ) @@ -30,7 +35,7 @@ execute_process( COMMAND ${QT_UIC_EXECUTABLE} -nounload -tr tr2i18n ${L} -impl ${_ui_basename}.h - ${UI_FILE} + ${local_ui_file} OUTPUT_VARIABLE _ui_cpp_content ) if( _ui_cpp_content )