c++ - How to set the name of the precompiled headers folder in qmake? -
i writing cross-platforms desktop application using qt creator ide. today, started working on linux port of application , encountered problem related qmake.
on windows, qmake creates folder target contains precompiled headers , next it, target.exe application executable.
on linux however, both folder , executable have same name target causing linker fail creating executable.
the workaround can think of manually specifying precompiled headers folder name.
the question is, how this?
you can make temporary folder , call folder "qmake ../your_pro_file.pro" , call "make". work ?
Comments
Post a Comment