Hi!
I am using Qt Creator in developing Qt libraries. I want to develop my libraries in both static and shared.
However when you use Qt creator, there are different sets of output files with the 2 types. The produced static library has 2 files and the shared library has 3 files (with an extra *_global.h).
I know how to use the CONFIG in the pro file, however when compiling a library from shared to static or static to shared produces some linking errors. How can I make my library be static- and shared-friendly?
↧