Qt 6.11 is out! See what's new in the release
blog
the compiler window outputs many header files (build in windows with msvc)
-
@cuijg This comes from the Microsoft C/C++ Compiler via the /showIncludes parameter.
Build systems like ninja use this information to manage the dependencies between source files.
Ninja has the
msvc_deps_prefixparameter where you could specify the translated string ofNote: including file:.CMake since version 3.20 has:
Makefile Generators, for some toolchains, now use the compiler to extract implicit dependencies while compiling source files.
I don't know if
JOMcan handle this.You can fix this as:
- Migrate to the
NinjaCMake generator. - Migrate to
clang-clcompiler which doesn't use/showIncludesbut the GNU version of generating the dependencies - Set
VSLANG=1033environment variable to force the output of the MSVC Compiler to English and hopefully things would just work.
- Migrate to the
-
C cuijg has marked this topic as solved
