Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

Multiple DLL versions

gib
New Contributor II
430 Views
I am developing an application that uses many DLLs (Qt and VTK). When I invoke the program from within VS, all works fine. When I double-click on the .exe file, it fails because it finds the wrong QtCore4.dll - there are several on my machine, associated with different software (e.g. Matlab).

When I execute the program within a command window, I can control the DLLs that are found by setting environment variables appropriately. What is the recommended way to achieve this when running the program from the Windows GUI?
0 Kudos
2 Replies
Yang_W_Intel
Employee
430 Views
You may write a .bat file which including the environment setting and the call to your exe, theninvoke the bat file from windows GUI.
Or you can set upthe properenvironment variables in the system environment variable settings.
Thanks.
-Yang
0 Kudos
gib
New Contributor II
430 Views
Thanks, I forgot about the bat file option.
0 Kudos
Reply