生成 libjingle VS 解决方案和项目
我正在尝试从 libjingle svn 的签出中生成 sln 和 vcproj 文件。 我设置了自述文件中定义的所有环境变量,但我不断收到错误:
C:\src>hammer --mode=all --vsproj
scons: *** No SConstruct file found.
File "c:\src\libjingle\scons-local\scons-local-2.1.0\SCons\Script\Main.py", line 904, in _main
事实上没有这样的文件,但我找不到有关如何或在何处创建它的任何信息。 这个问题与 Python 或 SCons 安装有关,还是 libjingle 上缺少某些内容?
I'm trying to generate the sln and vcproj files from the checkout of libjingle svn.
I set all the environment variables defined on README, but i keep getting the error:
C:\src>hammer --mode=all --vsproj
scons: *** No SConstruct file found.
File "c:\src\libjingle\scons-local\scons-local-2.1.0\SCons\Script\Main.py", line 904, in _main
In fact there's no such file, but i can't find any info on how or where to create it.
Is this problem related to Python or SCons installation or is something missing on libjingle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来构建系统有问题。您需要在 libjingle 项目中找到 SConstruct 文件(可能在 Hammer 构建系统 SConstruct 中具有不同的名称),并从其放置的目录中使用构建命令。
It seems build system problem. You need to found SConstruct file (may be in Hammer build system SConstruct have different name) in libjingle project and use build command from directory where it placed.