diff options
author | Timothy Pearson <[email protected]> | 2012-03-05 23:27:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-05 23:27:31 -0600 |
commit | ea715e15edb3f6b9e78d631d75e18bb9dbace497 (patch) | |
tree | 737eb56c7e410db3dfc5abd7db7fdc22594ea6f1 /modules/tde_uic.cmake | |
parent | 6b3a1fc54f258941ae7ae10909a23d32afee9df7 (diff) | |
download | tde-cmake-ea715e15edb3f6b9e78d631d75e18bb9dbace497.tar.gz tde-cmake-ea715e15edb3f6b9e78d631d75e18bb9dbace497.zip |
Added CACHE option to tde_execute_process and clean up build output
This partially closes Bug 882
Thanks to Aleksey Midenkov for the patch!
Diffstat (limited to 'modules/tde_uic.cmake')
-rw-r--r-- | modules/tde_uic.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tde_uic.cmake b/modules/tde_uic.cmake index e4c438b..fcd16f1 100644 --- a/modules/tde_uic.cmake +++ b/modules/tde_uic.cmake @@ -17,12 +17,12 @@ 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 ) -tde_execute_process( COMMAND tqt-replace ${local_ui_file} ) +tde_execute_process( COMMAND ${TQT_REPLACE_SCRIPT} ${local_ui_file} ) # ui.h extension file, if exists if( EXISTS "${UI_FILE}.h" ) configure_file( ${UI_FILE}.h ${local_ui_file}.h COPYONLY ) - tde_execute_process( COMMAND tqt-replace ${local_ui_file}.h ) + tde_execute_process( COMMAND ${TQT_REPLACE_SCRIPT} ${local_ui_file}.h ) endif( ) if( TDE_QTPLUGINS_DIR ) |