You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
581 B
21 lines
581 B
|
|
|
|
# used internally by KDE3Macros.cmake
|
|
# neundorf@kde.org
|
|
|
|
|
|
EXECUTE_PROCESS(COMMAND ${KDE_UIC_EXECUTABLE}
|
|
-L ${KDE_UIC_PLUGIN_DIR} -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}")
|
|
|