编译QVision
我正在尝试按照此处的说明在 Windows 下编译 QVision
: http://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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阅读您指向的安装文档:
Read the install documentation you pointed to:
“不推荐使用未转义的反斜杠”的警告是由于“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