Using Qt with custom MinGW
- by ereOn
Hi,
I don't know if this question would fit better on superuser.com, but since it's rather compiler related, I give it a try here.
I have to use Qt with a specific version of gcc (4.5). I downloaded the last official Qt release for Windows (Vista, 32 bits version) and didn't install the shipped MinGW version; I just installed the Qt libraries/binaries.
In a console, when I type qmake && make, make fails, complaining that 'g++' is not recognized as an internal command.
If I type g++ in the same console, I however have the following output:
g++: no input files
So g++ is definitely recognized.
For those who may ask, both the Qt binaries directory and MinGW binaries directory are in the system PATH environment variable.
What could be wrong here ?