What files are needed for a release build with Qt Creator? -


this question has answer here:

i compiled standard qt widget project (desktop qt 5.4.0 msvc2013 32 bit) release build qtcreator 3.3.0 on windows 7 32 bit , put qt libraries in same folder (qt5core.dll, qt5gui.dll, icudt53,dll, icuin53.dll, icuuc53.dll) , when start program error (roughly translated) "... doesn't work anymore" appears.

when same thing debug release , put appropriate debug libaries in folder works.

what have make differently release build?

thanks in advance help!

a.

try deploy application using the windows deployment tool found in qtdir/bin/windeployqt.exe. automatically puts necessary files in application directory.

open command prompt , add path qt directory , it's bin folder path variable :

set path= path\to\qt\bin 

next run windows deployment tool application path argument:

windeployqt.exe  <path-to-app-binary> 

this way make sure deployed application work on computer , have included whatever necessary.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -