Using Symbian libaries in Qt
Article Metadata
To include Symbian libraries in Qt projects, include the wanted libary names under symbian {} in projects .pro file.
Libaries are listed in LIBS with "-l" (small L-character) in front of them.
Example:
symbian {
...
LIBS += -lservicehandler -lavkon
...
}


(no comments yet)