summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-20 00:07:09 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-20 00:07:09 +0000
commit28ba65c6d25245f0ee7d54555d202fe5cf4fe5c2 (patch)
tree1dfa484cf9b513561501be9c0ecebb37a61034f0
parentcdf8d5f5ff680798060a83083a8083573a7f9bf0 (diff)
downloadtde-cmake-28ba65c6.tar.gz
tde-cmake-28ba65c6.zip
[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/cmake@1215873 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--modules/tde_uic.cmake9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/tde_uic.cmake b/modules/tde_uic.cmake
index 15e4709..9f04776 100644
--- a/modules/tde_uic.cmake
+++ b/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 )