Hi,
So far, on windows, I was using nmake
(using NMake Makefiles
generator) with cl
and make
(using MinGW Makefiles
generator) with gcc
.
But experimenting on parallel build, I realized that using make
achieved a better job than nmake
(using cmake --build . --parallel <#cpu>
).
Thus I wanted to use MinGW Makefiles
generator instead of NMake Makefiles
generator but I observed that cmake
then adds /showIncludes
which is undesired (at least for me).
How can I prevent that? Bonus: is there a way to inactivate showIncludes
, independently of the compiler and build tool used?
Regards,
A.