I am interested in using /MP as a command line option in each Visual Studio project I create with qmake (because this greatly speeds compilation) – see here for description.
Unfortunately, I have no idea how to set this in a Qt .pro file – or if it is even possible.
Is it possible to set command line flags (as in the linked question) for qmake to recognize and add to Visual Studio projects?
Try with
QMAKE_CXXFLAGS:It seems to be working – setting that and running
qmake -tp vcsets the MP flag in compiler’s options.