I am writing a cross-platforms desktop application using qt creator as an IDE. Today, I started working on the Linux port of the application and encountered a problem related to qmake.
On Windows, qmake creates the folder TARGET which contains the precompiled headers and next to it, TARGET.exe the application executable.
On Linux however, both the folder and the executable have the same name TARGET causing the linker to fail creating the executable.
The only workaround that I can think of is manually specifying the precompiled headers folder name.
The question is, how to do this?