hi there,

I have a question:
In the .pro file while compiling i can check if the qt configuration is static or shared using this:
CONFIG(static, static|shared)

I would like to know if there is a way to do this in the code as well somthing like this

#ifdef Qt_SHARED
//do something
#elif define(Qt_STATIC)
//do something else
#endif

thanks for the help