如何设置应用信息

发布于 2024-11-04 15:58:27 字数 237 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆躺在深渊里 2024-11-11 15:58:27

默认情况下,应用程序的显示名称源自 .pro 文件中的 TARGET 变量值。该显示名称用于菜单网格和 SIS 安装包等中。要更改它,请使用 DEPLOYMENT.display_name .pro 文件变量:

DEPLOYMENT.display_name = My Great Qt App

如果我没记错的话,安装包版本号源自 VERSION 变量:

 VERSION = 1.2.3

进一步阅读:< 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 the DEPLOYMENT.display_name .pro file variable:

DEPLOYMENT.display_name = My Great Qt App

If memory serves me well, the installataion package version number is derived from the VERSION variable:

 VERSION = 1.2.3

Further reading: qmake variable reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文