It may have helped to have mentioned that you were not using the Microsoft compiler. As it stands at the moment the compiler is probably complaining because there is no file called literally '/FI"customtypes.h"': even cursory inspection of existing command lines or the manual would have highlighted that "/" does not introduce a command line switch to GCC.
GCC has an equivalent switch that can be found with less than three minutes and the GCC manual:Make sure read about where the compiler will be looking for someobscurefilethatisboundtobelost.h.Qt Code:
-include "someobscurefilethatisboundtobelost.h"To copy to clipboard, switch view to plain text mode
The correct approach is to fix your source code, not to try and fudge it with obscure compiler options.
Bookmarks