Can Qt use Visual C++/MFC static library?
General and Desktop
4
Posts
3
Posters
4.0k
Views
1
Watching
-
Yes. As in your other thread, this is not Qt-specific at all. Just go to your project properties in VisualStudio and add the desired library under "Linker -> Input -> Additional Dependencies". If your project uses Qt, you are probably already linking against the Qt libraries at the very same place. Just add the additional library there...
-
I want to linked with a static library built with MFC(containing dialogs & windows). I think I should first build the static library with MFC statically linked, then add all the resources into the Qt Creator project, then add the linked the static library.
One problem is I cannot find a way to add the static library and resources into a Qt Creator project.