mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
Let user know about how to build after configure is done
This commit is contained in:
parent
b0bcc40026
commit
e54a4ac66c
1 changed files with 2 additions and 0 deletions
2
configure
vendored
2
configure
vendored
|
@ -63,6 +63,8 @@ def configure_meson(args, options):
|
||||||
subprocess.check_call([sys.executable, meson, "../"] + args, cwd=build_dir)
|
subprocess.check_call([sys.executable, meson, "../"] + args, cwd=build_dir)
|
||||||
subprocess.check_call([sys.executable, os.path.join(ROOTDIR, 'meson', 'mesonconf.py')]
|
subprocess.check_call([sys.executable, os.path.join(ROOTDIR, 'meson', 'mesonconf.py')]
|
||||||
+ get_configs(meson), cwd=build_dir)
|
+ get_configs(meson), cwd=build_dir)
|
||||||
|
print("You can now build GStreamer and its various subprojects running:\n"
|
||||||
|
" $ ninja -C %s" % build_dir)
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
print("EXIT meson return %s" % e.returncode)
|
print("EXIT meson return %s" % e.returncode)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
Loading…
Reference in a new issue