Re: [Interest] Using ccache with QtCreator under Windows

2017-09-15 Thread Konstantin Tokarev
15.09.2017, 12:07, "Xavier Bigand" : > I tried with a symlink as you suggested, but it still doesn't work. > I also putted the path of mingw binaries in my PATH environment variable. Ah, that's on Windows. Then I'm not sure it will work, because Windows symlinks may behave differently > > 2017

Re: [Interest] Using ccache with QtCreator under Windows

2017-09-15 Thread Xavier Bigand
I tried with a symlink as you suggested, but it still doesn't work. I also putted the path of mingw binaries in my PATH environment variable. 2017-09-14 19:46 GMT+02:00 Konstantin Tokarev : > > > 14.09.2017, 20:44, "Xavier Bigand" : > > Hello, > > > > I am trying to use ccache, that I got here :

Re: [Interest] Using ccache with QtCreator under Windows

2017-09-14 Thread Konstantin Tokarev
14.09.2017, 20:44, "Xavier Bigand" : > Hello, > > I am trying to use ccache, that I got here :  > https://code.google.com/archive/p/ccache-win32/ > This binary seems working fine, and I just put it in the  > Qt\Tools\mingw530_32\bin folder near g++ and other binaries. > > In .pro file of our proj

[Interest] Using ccache with QtCreator under Windows

2017-09-14 Thread Xavier Bigand
Hello, I am trying to use ccache, that I got here : https://code.google.com/archive/p/ccache-win32/ This binary seems working fine, and I just put it in the Qt\Tools\mingw530_32\bin folder near g++ and other binaries. In .pro file of our project I simply add the line : QMAKE_CXX = ccache g++ The