Well I manually ran qmake, since rebuild did not work, and it is not trying to link the phonon libs

Qt Code:
  1. Running build steps for project ***...
  2. Starting: "c:/qt/2010.04/qt/bin/qmake.exe" D:/Projects/***/***.pro -r -spec win32-g++
  3. The process "c:/qt/2010.04/qt/bin/qmake.exe" exited normally.
To copy to clipboard, switch view to plain text mode 

This is my .pro file
Qt Code:
  1. QT += core gui \
  2. phonon
  3.  
  4. TARGET = ***
  5. TEMPLATE = app
  6.  
  7. SOURCES += main.cpp\
  8. ***.cpp
  9.  
  10. HEADERS += ***.h
  11.  
  12. FORMS += ***.ui
  13.  
  14. RESOURCES += \
  15. images.qrc
To copy to clipboard, switch view to plain text mode