Creating libjingle VS solution and projects

I am trying to generate sln and vcproj files from libjingle svn check. I set all the environment variables defined in 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 

Actually there is no such file, but I can not find information on how and where to create it. Is this problem related to installing Python or SCons or is something missing in libjingle?

+1
source share
1 answer

There seems to be a problem with the build system. You need to find the SConstruct file (maybe the Hammer SConstruct build system has a different name) in the libjingle project and use the build command from the directory in which it was placed.

+1
source

Source: https://habr.com/ru/post/1486965/


All Articles