summaryrefslogtreecommitdiffstats
path: root/q15/cmake/modules/tde_uic.cmake
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-11-20 16:35:29 +0100
committerSlávek Banko <[email protected]>2020-12-02 19:51:30 +0100
commit5bf9a46ed843025016c7b7be43a1ca8754d60b79 (patch)
tree45b7243b7a03a2425da3c0117b858bbd31264a29 /q15/cmake/modules/tde_uic.cmake
parentafd39a42465117e8926ad7a858dc65c9bf654fa0 (diff)
downloadtdegames-5bf9a46ed843025016c7b7be43a1ca8754d60b79.tar.gz
tdegames-5bf9a46ed843025016c7b7be43a1ca8754d60b79.zip
Some cleanup and cosmetics.
Signed-off-by: gregory guy <[email protected]> (cherry picked from commit 0683f09c4a902a13b826a06ef95377b6352801f8)
Diffstat (limited to 'q15/cmake/modules/tde_uic.cmake')
-rw-r--r--q15/cmake/modules/tde_uic.cmake67
1 files changed, 0 insertions, 67 deletions
diff --git a/q15/cmake/modules/tde_uic.cmake b/q15/cmake/modules/tde_uic.cmake
deleted file mode 100644
index 36b921f2..00000000
--- a/q15/cmake/modules/tde_uic.cmake
+++ /dev/null
@@ -1,67 +0,0 @@
-#################################################
-#
-# (C) 2010-2011 Serghei Amelian
-# serghei (DOT) amelian (AT) gmail.com
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-set( CMAKE_MODULE_PATH "${MASTER_SOURCE_DIR}/cmake/modules" )
-include( TDEMacros )
-
-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_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_SCRIPT} ${local_ui_file}.h )
-endif( )
-
-if( TDE_TQTPLUGINS_DIR )
- set( L -L ${TDE_TQTPLUGINS_DIR} )
-endif( )
-
-tde_execute_process( COMMAND ${UIC_EXECUTABLE}
- -nounload -tr tr2i18n
- ${L}
- ${local_ui_file}
- OUTPUT_VARIABLE _ui_h_content )
-
-if( _ui_h_content )
- string( REGEX REPLACE "#ifndef " "#ifndef UI_" _ui_h_content "${_ui_h_content}" )
- string( REGEX REPLACE "#define " "#define UI_" _ui_h_content "${_ui_h_content}" )
- string( REGEX REPLACE "public TQWizard" "public KWizard" _ui_h_content "${_ui_h_content}" )
- string( REGEX REPLACE "public QWizard" "public KWizard" _ui_h_content "${_ui_h_content}" )
- string( REGEX REPLACE "#include <ntqwizard.h>" "#include <kwizard.h>" _ui_h_content "${_ui_h_content}" )
- string( REGEX REPLACE "#include <qwizard.h>" "#include <kwizard.h>" _ui_h_content "${_ui_h_content}" )
- file( WRITE ${_ui_basename}.h "${_ui_h_content}" )
-endif( )
-
-tde_execute_process( COMMAND ${UIC_EXECUTABLE}
- -nounload -tr tr2i18n
- ${L}
- -impl ${_ui_basename}.h
- ${local_ui_file}
- OUTPUT_VARIABLE _ui_cpp_content )
-
-if( _ui_cpp_content )
- string( REGEX REPLACE "tr2i18n\\(\"\"\\)" "QString::null" _ui_cpp_content "${_ui_cpp_content}" )
- string( REGEX REPLACE "tr2i18n\\(\"\", \"\"\\)" "QString::null" _ui_cpp_content "${_ui_cpp_content}" )
- string( REGEX REPLACE ": TQWizard\\(" ": KWizard(" _ui_cpp_content "${_ui_cpp_content}" )
- string( REGEX REPLACE ": QWizard\\(" ": KWizard(" _ui_cpp_content "${_ui_cpp_content}" )
- file( WRITE ${_ui_basename}.cpp "#include <kdialog.h>\n#include <tdelocale.h>\n\n${_ui_cpp_content}" )
-
- tde_execute_process( COMMAND ${MOC_EXECUTABLE}
- ${_ui_basename}.h
- OUTPUT_VARIABLE _ui_h_moc_content )
- file( APPEND ${_ui_basename}.cpp "${_ui_h_moc_content}" )
-
-endif( )