Hi
I a newbie to the Qt and started it for coding for symbian. I want to use symbian classes in Qt creator but every time I confronted with a new problem. I want to use etel3rdparty.lib classes in my project. For adding that library, I followed the instruction of Qt Docs, but it was not useful. My .pro file is:
Qt Code:
  1. QT += core
  2.  
  3. QT -= gui
  4.  
  5. TARGET = poiters
  6. CONFIG += console
  7. CONFIG -= app_bundle
  8.  
  9. TEMPLATE = app
  10. HEADERS += etel3rdparty.h
  11.  
  12.  
  13. SOURCES += main.cpp
  14.  
  15.  
  16. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../QtSDK/Symbian/SDKs/Symbian3Qt472/epoc32/release/armv5/lib/ -letel3rdparty
  17. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../QtSDK/Symbian/SDKs/Symbian3Qt472/epoc32/release/armv5/lib/ -letel3rdpartyd
  18. else:symbian: LIBS += -letel3rdparty
  19.  
  20. INCLUDEPATH += $$PWD/../../../../QtSDK/Symbian/SDKs/Symbian3Qt472/epoc32/release/armv5
  21. DEPENDPATH += $$PWD/../../../../QtSDK/Symbian/SDKs/Symbian3Qt472/epoc32/release/armv5
  22.  
  23. symbian|win32: LIBS += -letel3rdparty
To copy to clipboard, switch view to plain text mode 

I always get this code error:
:-1: error: cannot find -letel3rdpartyd
:-1: error: collect2: ld returned 1 exit status


regards.