compiling libspeex for symbian
I want to use libspeex library in my nokia Qt appl开发者_运维技巧ication. How do I compile speex for this purpose, and how do i add it to my qt project?
Did you check the README file for Symbian?
If you manage to compile it, basically you just need to add a line like this in your .pro file:
symbian:LIBS += c:/path/to/library/speex.lib
(or whatever the resulting library is called).
精彩评论