Talk:Deploy an Application on Windows: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Pointing out the dll files for program. For all of those facing issues with no platforms plugin.)
 
No edit summary
 
Line 1: Line 1:
'''This is NOT a guide!'''
This page should be removed. It is time consuming and error-prone.
Link to http://doc.qt.io/qt-5/windows-deployment.html
=======================
Also, keep in mind, that during development process, you may want to add this line to your at very beggining of program (just after main() ):
Also, keep in mind, that during development process, you may want to add this line to your at very beggining of program (just after main() ):



Latest revision as of 06:27, 16 July 2018

This is NOT a guide! This page should be removed. It is time consuming and error-prone.

Link to http://doc.qt.io/qt-5/windows-deployment.html

===========

Also, keep in mind, that during development process, you may want to add this line to your at very beggining of program (just after main() ):

QCoreApplication::addLibraryPath("./");

This will save you trouble of trying other computers or changing QT directory to anything else ( ex.C:\Qt\ to C:\QtHidden\ ) and will make the code work for machines of other people who use QT creator.