summaryrefslogtreecommitdiff
path: root/Modules/kde3uic.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2006-03-09 14:10:59 -0500
committerAlexander Neundorf <neundorf@kde.org>2006-03-09 14:10:59 -0500
commitd253baab99663f531d91d406faf6fe2b822f5cb8 (patch)
tree1bbdce092a3b66c975c6503513519ed9b29c5414 /Modules/kde3uic.cmake
parent26e1fea95b4b40cdaa99d069e4892c47f108756b (diff)
downloadcmake-d253baab99663f531d91d406faf6fe2b822f5cb8.tar.gz
ENH: add real-world-tested and used KDE3 support, and obsolete FindKDE.cmake, which wasn't used by anybody that I heard of
Alex
Diffstat (limited to 'Modules/kde3uic.cmake')
-rw-r--r--Modules/kde3uic.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/Modules/kde3uic.cmake b/Modules/kde3uic.cmake
new file mode 100644
index 0000000000..948372927e
--- /dev/null
+++ b/Modules/kde3uic.cmake
@@ -0,0 +1,20 @@
+
+
+# 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}" )
+
+FILE(WRITE ${KDE_UIC_CPP_FILE} "#include <kdialog.h>\n#include <klocale.h>\n\n")
+FILE(APPEND ${KDE_UIC_CPP_FILE} "${_uic_CONTENTS}")
+