I want to run gstreamer APIs in QT.
I have successfully installed gstreamer sdk and am able to run its tutorial using gcc.
I have configured the QT and set all the environment variables in QT project settings.
My pro file is as follows:
Qt Code:
  1. QT += core gui
  2.  
  3. TARGET = streaming
  4. TEMPLATE = app
  5.  
  6.  
  7. SOURCES += main.cpp\
  8. mainwindow.cpp
  9.  
  10. HEADERS += mainwindow.h
  11.  
  12. FORMS += mainwindow.ui
  13.  
  14. unix {
  15. CONFIG += link_pkgconfig
  16. PKGCONFIG += gstreamer-0.10
  17. }
To copy to clipboard, switch view to plain text mode 

However when i build,it is giving an error like:
Qt Code:
  1. Project ERROR: Package gstreamer-0.10 not found
To copy to clipboard, switch view to plain text mode 

I guess I am missing some configuration settings.
Pl help
P.S.: using ubuntu 12.04