aboutsummaryrefslogtreecommitdiff
path: root/modules/kde3uic.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/kde3uic.cmake')
-rw-r--r--modules/kde3uic.cmake23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/kde3uic.cmake b/modules/kde3uic.cmake
deleted file mode 100644
index 83920b40..00000000
--- a/modules/kde3uic.cmake
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-# used internally by KDE3Macros.cmake
-# neundorf@kde.org
-
-
-EXECUTE_PROCESS(COMMAND uic
- -nounload -tr tr2i18n
- -impl ${KDE_UIC_H_FILE}
- ${KDE_UIC_FILE}
- OUTPUT_VARIABLE _uic_CONTENTS
- ERROR_QUIET
- )
-
-STRING(REGEX REPLACE "tr2i18n\\(\"\"\\)" "QString::null" _uic_CONTENTS "${_uic_CONTENTS}" )
-STRING(REGEX REPLACE "tr2i18n\\(\"\", \"\"\\)" "QString::null" _uic_CONTENTS "${_uic_CONTENTS}" )
-
-# $(PERL) -pe "s,image([0-9][0-9]*)_data,img\$$1_editbookmarkdlg,g" >> editbookmarkdlg.cpp ;\
-# rm -f editbookmarkdlg.cpp.temp ;\
-
-FILE(WRITE ${KDE_UIC_CPP_FILE} "#include <kdialog.h>\n#include <klocale.h>\n\n")
-FILE(APPEND ${KDE_UIC_CPP_FILE} "${_uic_CONTENTS}")
-