如何为我的基于 Qt 的应用程序创建 .exe 文件
我在 Qt-Creator 1.3.1 和 Qt 4.6.2 中编写了一个程序 并且真的不知道如何为我刚刚编写的程序创建一个简单的 .exe 文件...... 如果可能的话我宁愿用 Qt-Creator 来做
i wrote a program in Qt-Creator 1.3.1 and Qt 4.6.2
and realy dont figure out how to create a simple .exe file for the program i just wrote...
i rather do it with the Qt-Creator if it's possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Qt Creator 中,当您构建 (Ctrl+B) 项目时,它始终会创建一个 .exe,当您从 Qt Creator(Ctrl+R 或大播放按钮)运行应用程序时会执行该 .exe。
如果您想找到此 .exe,您应该在调试文件夹(或发布文件夹,具体取决于您的构建配置)中查找 .pro(项目文件)所在的文件夹。
In Qt Creator, when you build (Ctrl+B) your project, it always creates a .exe that is executed when you run the app from Qt Creator (Ctrl+R or the big play button).
If you want to find this .exe, you should look in the folder where your .pro (the project file) is located in the folder debug (or release depending on your build configuration).
@Live 是对的。请参阅发布或调试目录。但是,如果您移动 .exe 并想要执行,您将收到有关缺少 DLL 的通知。您可以从 Qt 安装目录中找到它们。将所有必需的 DLL 放在 exe 文件旁边,就完成了!当你执行它时,DLL 文件会告诉你你的 exe 文件!
@Live is right. See in release or debug dir. But if you move the .exe and want to execute you will get notofications about DLL's that miss. You can find them from yout Qt installation dir. Put next to your exe file all required DLL's and you're done! The DLL files will tell your your exe file while you execute it!