mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 01:03:19 +02:00
Use python3 instead of python binary for configuring libnode on Linux
This commit is contained in:
parent
177d67dbbd
commit
c7fd18059e
1 changed files with 6 additions and 3 deletions
|
@ -106,14 +106,17 @@ class libnodeConan(ConanFile):
|
|||
if self.settings.os == "Linux":
|
||||
args.append("--gdb")
|
||||
|
||||
self.run(
|
||||
"python configure.py %s" % (" ".join(args)), env=["node_build_env"]
|
||||
)
|
||||
if self.settings.os == "Windows":
|
||||
self.run(
|
||||
"python configure.py %s" % (" ".join(args)), env=["node_build_env"]
|
||||
)
|
||||
# self.run("ninja libnode", env=["node_build_env"])
|
||||
msbuild = MSBuild(self)
|
||||
msbuild.build("node.sln", targets=["libnode"])
|
||||
else:
|
||||
self.run(
|
||||
"python3 configure.py %s" % (" ".join(args)), env=["node_build_env"]
|
||||
)
|
||||
autotools = Autotools(self)
|
||||
autotools.make(args=["-C out", "BUILDTYPE=%s" % self.settings.build_type], target="libnode")
|
||||
|
||||
|
|
Loading…
Reference in a new issue