-1

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?

JoseOrtiz3
  • 1,785
  • 17
  • 28

1 Answers1

0

Go to start menu, type "cmd" then Enter. It will open a Windows command prompt. That's where commands are supposed to be typed.

jpo38
  • 20,821
  • 10
  • 70
  • 151
  • Thanks jpo, I tried that and received an error for "configure", because I didn't have "configure.exe" in the directory. So I thought I must be doing it wrong, nope, I needed to download the Qt Source. – JoseOrtiz3 Apr 10 '15 at 22:48
  • Sure, it must be easier to compile the sources when you have them ;-) – jpo38 Apr 11 '15 at 05:51