PDA

View Full Version : QT application deployment issue on windows XP



meraj ansari
20th May 2010, 11:57
Hi,

I have created simple QT app to display label. I have checked the dependency of exe and found that to deploy on other machine(where QT is not installed), i need following DLLs (snap shoot attached)-
1-QTGUID4.DLL
2QTCORED4.DLL
3-MSVCR90D.DLL

So i placed exe along with 3 DLL's and MSVCP90D.DLL in a folder and then copied this folder to other machine. But when i tried to run application it is giving me some re installation error(plz check attached error snapshot) .

Any suggestion what i am missing?

Note:- I am using VS2008.

aamer4yu
20th May 2010, 12:32
I guess you need to build release version
You are trying to deploy debug version !!

squidge
20th May 2010, 13:20
Also, you can't copy MSVCR90D - check the Microsoft license. You have to distribute the Microsoft Visual C++ Runtime Distributable.

meraj ansari
20th May 2010, 14:14
@fatjuicymole
<<Also, you can't copy MSVCR90D - check the Microsoft license. You have to distribute the Microsoft Visual C++ Runtime Distributable. >>
Thanks for information. I will use redistributable package.


@aamer4yu
<<I guess you need to build release version
You are trying to deploy debug version !! >>

I distributed relese exe with VS 2008 redistributable pacakage and it is working fine.

Thanks all