Hello,
I am trying to link the etel3rdparty lib so i can make a phone call within my qt app (all the code is under ifdef OS_Symbian statements).
THe problem is i get an undefined reference to CTelephony::NewL(), although when i call a Ctelephony object in the ide the text completes itselft, something like when i type c-> ( and i get all the methods from the box).But on compiling i get the error.
here is my .pro file:
QT += core gui\
network\
xml \
webkit
TARGET = Horoscope
TEMPLATE = app
SOURCES += main.cpp\
horoscope.cpp \
Parser/Simbol.cpp \
Parser/production.cpp \
Parser/parser.cpp \
Parser/grammar.cpp \
Parser/stdafx.cpp \
CClientApp.cpp
HEADERS += horoscope.h \
Parser/Simbol.h \
Parser/production.h \
Parser/parser.h \
Parser/grammar.h \
Parser/stdafx.h \
CClientApp.h
FORMS += horoscope.ui
CONFIG += mobility
MOBILITY =bearer messaging
symbian {
include($$PWD/../../symbianpkgrules.pri)
TARGET.UID3 = 0xe527b0f9
TARGET.CAPABILITY += Location \
NetworkServices \
ReadUserData \
LocalServices \
ReadUserData \
WriteUserData \
UserEnvironment
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x800000
LIBS += -lsendas2 \
-lmsgs \
-letext \
-lefsrv \
-lcharconv \
-lgsmu\
-etel3rdparty.lib\
-e32base.lib\
-euser.lib
}
RESOURCES += \
res.qrc
OTHER_FILES +=[/CODE]



