user628298
user628298

Reputation: 287

Compiling Qt5.2.1 from source on windows

I downloaded the qt-opensource-windows-x86-mingw48_opengl-5.2.1.exe

installed also the source.

Compiling MinGW:

In that folder is the correct one for copilar Qt?

Upvotes: 0

Views: 586

Answers (1)

esorton
esorton

Reputation: 1572

No, that is not the correct folder.

You have to run configure from the root of the source directory. This will generate the necessary Makefiles. Then you execute make. Detailed instructions are available on the Qt project website:

http://qt-project.org/doc/qt-5/windows-building.html

Be warned, the Qt build is quite lengthy.

Upvotes: 3

Related Questions