编译QVision

发布于 2024-11-14 06:12:49 字数 1199 浏览 1 评论 0原文

我正在尝试按照此处的说明在 Windows 下编译 QVisionhttp://qvision .sourceforge.net/DownloadAndSetup.html

当我这样做时,我在 Qt Creator 中得到以下内容:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\common.pri:37:

警告:无法找到文件 包含 config.pri

并且,

:-1: 错误:文件 config.pri 不存在。读取 INSTALL 文件,并修改 config.pri.example 来生成它。

更新:

通过将 config.pri.example 重命名为 <解决上述错误后code>config.pri,我现在收到以下警告:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\config.pri:43: warning: Unescaped backslashes are deprecated。

即使我将保存 QVision 的路径更改如下,此错误仍然存​​在:INSTALL_PATH=C:\Users\Medicine - SWEng\Desktop\qvision.0.6.0

还收到此警告:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\src\qvgsl.pri:31: warning: Unescaped backslashes are deprecated.

我收到的错误是:

:-1: 错误:在模块 qvmplayer 中:在 /usr/bin/mplayer 处找不到 QVMPlayer 二进制文件。在 config.pri 文件的 MPLAYER_BINARY_PATH 变量中设置正确的路径

对此有什么想法吗?

谢谢。

I'm trying to compile QVision under Windows as instructed here: http://qvision.sourceforge.net/DownloadAndSetup.html

When I do that, I get the following in Qt Creator:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\common.pri:37:

warning: Unable to find file for
inclusion config.pri

And,

:-1: error: File config.pri not present. Read the INSTALL file, and modify config.pri.example to generate it.

UPDATE:

After solving the preceding error by renaming config.pri.example to config.pri, I now get the following warning:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\config.pri:43: warning: Unescaped backslashes are deprecated.

This error still remains even though I changed the path to where QVision is saved as follows: INSTALL_PATH=C:\Users\Medicine - SWEng\Desktop\qvision.0.6.0

I'm also getting this warning:

c:\Users\Medicine - SWEng\Desktop\qvision.0.6.0\src\qvgsl.pri:31: warning: Unescaped backslashes are deprecated.

The error I'm getting is:

:-1: error: In module qvmplayer: QVMPlayer binary was not found at: /usr/bin/mplayer . Set a correct path in the MPLAYER_BINARY_PATH variable at the config.pri file

Any ideas on that?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

烟酒忠诚 2024-11-21 06:12:49

阅读您指向的安装文档:

您必须将文件 config.pri.example 重命名为 config.pri。该文件包含配置 QVision 的编译和功能的多个参数和选项。

...使用文本编辑器打开文件 config.pri,然后仔细阅读该文件中包含的有关如何调整每个配置参数的说明

Read the install documentation you pointed to:

You must rename the file config.pri.example to config.pri. This file contains several parameters and options that configure the compilation and functionallity of the QVision.

... Open the file config.pri with a text editor, and read carefully the instructions contained in that file about how to tune each configuration parameter.

家住魔仙堡 2024-11-21 06:12:49

“不推荐使用未转义的反斜杠”的警告是由于“config.pri”文件中变量 INSTALL_PATH 和 GSL_PATH 中的内容引起的。例如阅读:

http://www.qtforum.org/article /33409/unescaped-backslashes-are-deprecated.html

Warnings for "Unescaped backslashes are deprecated" are due to the content in variables INSTALL_PATH and GSL_PATH, in the 'config.pri' file. Read for example:

http://www.qtforum.org/article/33409/unescaped-backslashes-are-deprecated.html

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