如何设置应用信息
我正在使用 Qt Nokia SDK
开发一个应用程序。 我用谷歌搜索并搜索了论坛,但我似乎找不到任何有关如何设置应用程序版本的信息。
我使用 Nokia 智能安装程序
封装 sis
文件,因此我还希望在使用智能安装程序时弹出信息。
我想我必须编辑 .pro
文件,但我不知道要插入什么才能设置应用程序版本、应用程序名称等。
I am developing an app using the Qt Nokia SDK
.
I have googled and searched forums, but I can't seem to find anything about how to set application version.
I'm wrapping the sis
file using the Nokia smart installer
, so I would also like the information to pop up when I'm using the smart installer.
I guess I have to edit the .pro
file, but I don't know what to insert to be able to set the application version, application name, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,应用程序的显示名称源自 .pro 文件中的
TARGET
变量值。该显示名称用于菜单网格和 SIS 安装包等中。要更改它,请使用DEPLOYMENT.display_name
.pro 文件变量:如果我没记错的话,安装包版本号源自
VERSION
变量:进一步阅读:< a href="http://doc.qt.nokia.com/latest/qmake-variable-reference.html" rel="nofollow">qmake 变量参考
By default a display name for your application is derived from the
TARGET
variable value in your .pro file. This display name is used e.g. in menu grid and SIS installation package. To change it, use theDEPLOYMENT.display_name
.pro file variable:If memory serves me well, the installataion package version number is derived from the
VERSION
variable:Further reading: qmake variable reference