Hi,
I have been working on a little app for Linux using Qt. I started with shared libraries, and things are all OK.

Now, however, I want to change the project such that it uses static Qt libraries.

I have successfully recompiled Qt, with the -static option

I modified my path so that the it is now pointing to the static stuff.

I modified the .pro file of my app to include "CONFIG += static", and reran qmake (in the generated makefile I can see that indeed the new, static stuff is being used)

My application builds fine.
The problem is, that it is still using shared libraries. When I run ldd ./app, it still shows the paths to the .so's ?

What am I doing wrong ?

Best regards,
Marc.