How to determine which DLLs are needed to distribute with a program built in Visual Studio VS2022?
Solved
General and Desktop
-
I have a small application which uses several modules (core;gui;widgets;sql;charts). I tried copying the DLLs to the folder where the exe file resides but it fails to load - something about plugins...
How do I determine which DLLs are needed to go with the executable? I can run dumpbin /IMPORTS but is there a simpler way and does this give us a complete list of DLLs? Also, does it need some .EXEs? -
Hi,
The most simple is to use windeployqt. The tool will copy all the necessary files.
-