mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import subprocess
|
||
|
import os
|
||
|
import sys
|
||
|
import shutil
|
||
|
|
||
|
def accept_command(commands):
|
||
|
"""Search @commands and returns the first found absolute path."""
|
||
|
for command in commands:
|
||
|
command = shutil.which(command)
|
||
|
if command:
|
||
|
return command
|
||
|
|
||
|
return None
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
ninja = accept_command(["ninja", "ninja-build"])
|
||
|
buildroot = os.environ["MESON_BUILD_ROOT"]
|
||
|
|
||
|
bindinate = False
|
||
|
if len(sys.argv) > 1 and sys.argv[1] == "bindinate":
|
||
|
bindinate = True
|
||
|
|
||
|
print("Building all code")
|
||
|
subprocess.check_call([ninja, "-C", buildroot])
|
||
|
|
||
|
if bindinate:
|
||
|
print("Bindinate GStreamer")
|
||
|
subprocess.check_call([ninja, "-C", buildroot, "bindinate_gstreamer"])
|
||
|
|
||
|
print("Update GStreamer bindings")
|
||
|
subprocess.check_call([ninja, "-C", buildroot, "update_gstreamer_code"])
|
||
|
|
||
|
if bindinate:
|
||
|
print("Bindinate GES")
|
||
|
subprocess.check_call([ninja, "-C", buildroot, "bindinate_ges"])
|
||
|
print("Update GES bindings")
|
||
|
subprocess.check_call([ninja, "-C", buildroot, "update_ges_code"])
|
||
|
|
||
|
print("Building all code")
|
||
|
subprocess.check_call([ninja, "-C", buildroot])
|