Hello, I am trying to make my application link statically against Qt libraries on windows xp. I use MinGW. I have both staitic (.a) and dynamic (.dll) libraries in my Qt lib directory. In two attempts I added CONFIG += static and CONFIG += staticlib in my .pro file but both times the application linked dynamically. I know that because it wanted QtCored4.dll. Please answer the following questions:
How can I tell if Qt was built with static support other than knowing it was built with -static option?
How can I tell the make tool to use static linking?
Thank you in advance for any help you offer.