*.pro 文件的用途是什么?
我刚刚开始使用 Qt,注意到每个示例代码文件夹中都有一个 .pro
文件(并且还创建了一个 makefile...为什么?)。 .pro
文件的用途是什么?
I just started using Qt and noticed that in each example code folder there is a .pro
file (and there is also a makefile created too... why?). What is the purpose of the .pro
file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是一个多平台项目文件,
qmake
将其转换为特定于平台的 makefile。它存在的主要原因是更容易配置和编译多平台项目。与 autotools 生成的configure
脚本和 UNIX 中常见的 makefile 进行比较。It's a multiplatform project file which
qmake
turns into platform-specific makefiles. The main reason for its existence is easier configuration and compilation of multiplatform projects. Compare e.g. to autotools-generatedconfigure
scripts and makefiles commonly seen in unixland.