tags:

views:

21

answers:

1

I want to use libspeex library in my nokia Qt application. How do I compile speex for this purpose, and how do i add it to my qt project?

A: 

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).

teukkam