在 Windows Qt Creator 上,我在哪里输入 "cd" "nmake" 和 "configure" 这样的命令

on Windows Qt Creator where do I enter commands like "cd" "nmake" and "configure"

我在 windows。我需要从我完成的 Qt 项目中创建一个 .exe 独立(静态)可执行文件。

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

要做到这一点,我必须做一些事情,比如在某个地方输入这个

cd C:\path\to\Qt
configure -static <any other options you need>

nmake clean
qmake -config release
nmake

但我不知道在哪里做这个?!我在 Windows 或 Qt 编辑器上的什么地方执行此操作?

转到开始菜单,输入 "cmd" 然后回车。它将打开 Windows 命令提示符。那是应该输入命令的地方。