Can't compile plugin for QtCreator(msvc, lib and dll issue)
Solved
Qt Creator and other tools
-
Hi,
I'm trying to create Qt Creator plugin. I use wizard for it, but when I try compile plugin then I have message:
error LNK1181: cannot open input file 'Cored.lib'I use msvc 2015, I have Qt Creator and Qt compiled by this compiler. It's looks like default plugin project tries to make static link to Cored, but it should link dynamic. How can I force that? MinGW use dynamic linking, but for msvc it doesn't work.
Best regards,
Lukasz -
Hi,
No it doesn't, .lib files on Windows are either import libraries or static libraries. In your case, are you sure you have the debug version of that library available ?