1

I wrote and compiled a program in QT, but I wanted to be able to send the .exe file to run on another computer. However, some .dll files are needed to ship with the application.

What are the locations of these dll files?

Z Rev
  • 84
  • 1
  • 13
  • Have answered here: http://stackoverflow.com/questions/35068344/how-to-compile-a-standalone-with-qt-creator-on-windows/35069261#35069261 – ramtheconqueror Feb 02 '16 at 16:08

2 Answers2

1

Inthe docs, there's a chapter about it:

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

at the very end it mentions the windeployqt command

bibi
  • 3,671
  • 5
  • 34
  • 50
0

If you mean the Qt *.dll files, they are located in the bin folder, inside your Qt installation directory.

Tomas
  • 2,170
  • 10
  • 14