Qt Code:
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2011-02-18T14:52:13
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. TARGET = samplecv
  10. TEMPLATE = app
  11.  
  12.  
  13. SOURCES += main.cpp\
  14. mainwindow.cpp
  15.  
  16. HEADERS += mainwindow.h
  17.  
  18. FORMS += mainwindow.ui
  19.  
  20. CONFIG += mobility
  21. MOBILITY =
  22. INCLUDEPATH += C:/OpenCV2.2/include/opencv \
  23. C:/OpenCV2.2/include/opencv2
  24. LIBS+= C:/OpenCV2.2/lib/*.lib
  25. symbian {
  26.   TARGET.UID3 = 0xe10417cf
  27.   # TARGET.CAPABILITY +=
  28.   TARGET.EPOCSTACKSIZE = 0x14000
  29.   TARGET.EPOCHEAPSIZE = 0x020000 0x800000
  30. }
To copy to clipboard, switch view to plain text mode 

Am i true with this kind of declaration....i haven't been that much familiar with opencv....

if possible can you help with an Qt example together with OpenCV...

Thanks