I'm building using both gcc and vc++.
When building formextractor example in debug mode gcc executable is 1 114 050 bytes and vc++ one is 75 776 bytes. When running, gcc executable runs ok but vc++ one gives error about not being able to find msvcr90d.dll file. It looks like gcc links with this statically whereas vc++ links dynamically.

How can I configure both builds in creator to have the same behavior in respect to linking to run-time libraries?