Qt 6.11 is out! See what's new in the release
blog
how to solve the @ marked code
-
#if !defined (L_BIG_ENDIAN) && !defined (L_LITTLE_ENDIAN) # if @APPLE_UNIVERSAL_BUILD@ # ifdef __BIG_ENDIAN__ # define L_BIG_ENDIAN # else # define L_LITTLE_ENDIAN # endif # else # define @ENDIANNESS@ # endif #endifi just want include the headers from other projects.now here is the @ code dont recognize .So how so solve the problem?
-
#if !defined (L_BIG_ENDIAN) && !defined (L_LITTLE_ENDIAN) # if @APPLE_UNIVERSAL_BUILD@ # ifdef __BIG_ENDIAN__ # define L_BIG_ENDIAN # else # define L_LITTLE_ENDIAN # endif # else # define @ENDIANNESS@ # endif #endifi just want include the headers from other projects.now here is the @ code dont recognize .So how so solve the problem?
@nicker-player
This is not legal C++ code. The@s are obviously intended so that something pre-processes this to change the@...@s. But nobody can tell you where/what that since you say nothing about where this is, or whether it has anything to do with Qt....