2016-09-27 22:01:08 +03:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2006-03-09 22:10:59 +03:00
|
|
|
|
|
|
|
|
|
|
|
# used internally by KDE3Macros.cmake
|
|
|
|
# neundorf@kde.org
|
|
|
|
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
execute_process(COMMAND ${KDE_UIC_EXECUTABLE}
|
2006-08-27 23:52:36 +04:00
|
|
|
-L ${KDE_UIC_PLUGIN_DIR} -nounload -tr tr2i18n
|
2006-03-09 22:10:59 +03:00
|
|
|
-impl ${KDE_UIC_H_FILE}
|
|
|
|
${KDE_UIC_FILE}
|
|
|
|
OUTPUT_VARIABLE _uic_CONTENTS
|
|
|
|
ERROR_QUIET
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
string(REGEX REPLACE "tr2i18n\\(\"\"\\)" "QString::null" _uic_CONTENTS "${_uic_CONTENTS}" )
|
|
|
|
string(REGEX REPLACE "tr2i18n\\(\"\", \"\"\\)" "QString::null" _uic_CONTENTS "${_uic_CONTENTS}" )
|
2006-03-09 22:10:59 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
file(WRITE ${KDE_UIC_CPP_FILE} "#include <kdialog.h>\n#include <klocale.h>\n\n")
|
|
|
|
file(APPEND ${KDE_UIC_CPP_FILE} "${_uic_CONTENTS}")
|
2006-03-09 22:10:59 +03:00
|
|
|
|