I do not seem to find uptodate instructions about the subject matter, so here is the question:

I am using Creator in Windows and targeting to Qt simulator (as the first target, later also other platforms).

When I create a new C++ library project with Creator wizard and build it, it seems to create a "MyLib.a" named static library in the target folder. So far so good.

However, how to use this library?

I have added this kind of lines into application .pro file

LIBS += c:/lib/MyLib.a
INCLUDEPATH += c:/source/MyLib

and also included the header file in the application code file.

The application builds OK, but trying to run it produces:

"exited with code -1073741515"

error immediately when started.

What am I missing?

br, _perza