my objective is to make a simple telephone call from Qt app. as telephony extension is not provided with Qt mobility. so i used old Qt moblie extension package(mobile extension preview 3). Now problem is that i don't have Required symbian Libs.
.pro file is as under
Qt Code:
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2010-12-31T11:59:14
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. TARGET = musicApp
  10. TEMPLATE = app
  11.  
  12.  
  13. SOURCES += main.cpp\
  14. mainwindow.cpp \
  15. telephony/xqtelephony.cpp \
  16. telephony/ctelephonymonitor.cpp \
  17. telephony/ccalldialer.cpp \
  18. telephony/xqtelephony_p.cpp
  19.  
  20. HEADERS += mainwindow.h \
  21. telephony/xqtelephony.h \
  22. telephony/telephony_global.h \
  23. telephony/ctelephonymonitor.h \
  24. telephony/ccalldialer.h \
  25. telephony/xqtelephony_p.h
  26.  
  27. FORMS += mainwindow.ui
  28.  
  29. CONFIG += mobility
  30. MOBILITY =
  31.  
  32. symbian {
  33. TARGET.UID3 = 0xe9694094
  34. TARGET.CAPABILITY += NetworkServices/
  35. ReadUserData/
  36. WriteUserData
  37. LIBS += -letel3rdparty\
  38. -lcntmodel\
  39. -lbafl\
  40. -lefsrv\
  41. -lestor\
  42. -lexiflib.dll
  43. TARGET.EPOCSTACKSIZE = 0x14000
  44. TARGET.EPOCHEAPSIZE = 0x020000 0x800000
  45. }
To copy to clipboard, switch view to plain text mode 


-letel3rdparty\
-lcntmodel\
-lbafl\
-lefsrv\
-lestor\
-lexiflib.dll


these libs are not available

rest of my project is quit simple i am just using these to statements to make a call
Qt Code:
  1. XQTelephony *telephone = new XQTelephony(this);
  2. telephone->call(ui->lineEdit->text());
To copy to clipboard, switch view to plain text mode 
anybody have an idea, whats the problem.

And is there some otherway to make a call from qt app.
thanks.