Prevents some unicode-related compiler definitions being set automatically on a target.
命令的定义在
核心
组件对于
Qt6
包,可以像这样加载:
find_package(Qt6 REQUIRED COMPONENTS Core)
该命令在 Qt 6.2 引入。
qt_disable_unicode_defines(target)
若
无版本命令
被禁用,使用
qt6_disable_unicode_defines()
代替。它支持如此命令的一组相同自变量。
在 Qt 6,
UNICODE
and
_UNICODE
compiler definitions are set by default for targets that link against Qt modules. This is in line with the qmake behavior, but it is a change compared to the CMake API behavior in Qt 5. Calling
qt_disable_unicode_defines()
在
target
prevents these compiler definitions from being automatically set.
另请参阅 qt_allow_non_utf8_sources() .