exclude specific files from using precompiled header with qmake
Unsolved
General and Desktop
-
To resolve include conflicts, I need to do this. Is this somehow possible?
-
I want to incorporate precompiled headers into my project but I'm getting include conflicts in some of the cpp files (i.e. between QtOpenGL and glew.h). The easiest option appears to be disabling the use of the pch in these cpp files which can easily be done from within visual studio, it's just a compiler flag.
This I'd like to do from within qmake so that I don't need to do it manually every time I rebuilt the solution.