I am using Qt 5.4 and mingw64 4.8.1
so i am using qmake
to make the MakeFile, however when i use mingw32-make to make the executable I get the "missing separator" error on line 62
the code around this line is as follows:
{.}.cpp{release\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<<
$<
<<
before the $ signs there are tab characters, and the last line is line 62,
CXX is defined as cl
although when i changed the definition g++ it didnt work (as i had seen this as a suggested solution elsewhere)
The entire Makefile is available here: http://pastebin.com/GVKj1Vjs
thanks in advance for any help you can offer