c++ - Setting up ccache with Qt Creator on Windows -


I am trying to set up ccache in Qt Creator on Windows.

Unfortunately I can not find any good instruction how it should be done?

I have a seat with Saigvin installed.

Edit:

I add additional

  QMAKE_CXX + = "ccache g ++"   

Have tried the qmake construct phase in the parameter

But I'm still in "g ++ -c -g-wall ..." compiled output and I think it should be "ccache g ++ ..."

should be:

  "QMAKE_CXX = ccache g ++"   

And if you do not update the makefile after adding that parameter to QtCreator automatically, then the qmake may need to be run again from the build menu.

Comments