Hello.

I'm working on a small scientific Qt project for experimental data handling data visualization. Since this project is mostly designated for Windows users, I intend to create a statically linked distribution of the final product, so as not to burden the users. I've built Qt statically according to these instructions. I've made some minors changes to the configuration call (for instance, I excluded the Webkit plugin due to some compilation difficulties), but in general the whole build seems to be working fine. I can easily create standalone builds for simple Qt applications (typical executable is about 8-9 MB large). I have also compiled Qwt (with its defaults configuration) and I can run the Qwt examples and I can import Qwt to my own projects. My problem is that I can't seem to combine both the static Qt build and Qwt. I am able to build a Qwt containing project statically and create an executable file, but its execution always leads to an error (A pop-up widow: "Microsoft Visual C++ Runtime Library: This application has requested the Runtime to terminate it an unusual way. Please contact the application's support team for more information", and "Invalid parameter passed to C runtime function." in the output). Note that a default (dynamic ?) build of the same application always succeeds. What might be the problem?

Thanks in advance.