qt_exclude_from_translation

此属性在 Qt 6.7 中引入。

将此目录属性设置为ON 可将目录及其子目录中的所有目标从翻译中排除。命令qt_collect_translation_source_targets将跳过此类目标。

要排除单个目标,请使用目标属性QT_EXCLUDE_FROM_TRANSLATION

示例

在下面的示例中,将不会从tests 目录中定义的目标中提取可翻译字符串。

add_subdirectory(app)
add_subdirectory(tests)
set_property(DIRECTORY tests PROPERTY QT_EXCLUDE_FROM_TRANSLATION ON)
qt_add_translations(myapp)

或者,您可以在tests 子目录的CMakeLists.txt 中设置目录属性。

# tests/CMakeLists.txt
qt_add_executable(...)
add_test(...)
set_directory_properties(PROPERTIES QT_EXCLUDE_FROM_TRANSLATION ON)

另请参阅 QT_EXCLUDE_SOURCES_FROM_TRANSLATION

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.