I think you might have forgotten to create Makefile based on new .pro file. Just run:
qmake yourproject.pro
If it still fails you can edit generated Makefile and add this flag.
EDIT: New solution. Add -std=c++0x directly to Makefile. There's a line similar to this:
CXXFLAGS = -pipe -g -gdwarf-2 -arch i386 -Wall -W $(DEFINES)
Just add -std=c++0x so the result is:
CXXFLAGS = -pipe -g -gdwarf-2 -arch i386 -Wall -std=c++0x -W $(DEFINES)
Jacek
2010-06-07 06:54:37