I am on windows. I need to make a .exe standalone (static) executable from my completed Qt project.
According to http://doc.qt.io/qt-5/windows-deployment.html
to do this I have to do such things as enter this somewhere
cd C:\path\to\Qt
configure -static <any other options you need>
and
nmake clean
qmake -config release
nmake
but I have no idea where to do this?! Where do I do this on Windows or on Qt Editor?