diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2021-10-05 12:12:09 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2021-10-05 12:12:09 +0100 |
commit | 7697a3f3cd51d70c73333f095311ef1471d0fc17 (patch) | |
tree | 3a19bb3d1d8415ea4d0cee4aa4bb5249d336ab5d | |
parent | 29352ad0f82c38649424801c97473e33d75caf41 (diff) |
meson: warn that gst-build is obsolete and has moved to the monorepoHEADmasterdiscontinued-for-monorepo
https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/mono-repository.html
-rw-r--r-- | meson.build | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 4a2eb27..37faf0e 100644 --- a/meson.build +++ b/meson.build @@ -6,6 +6,20 @@ project('All GStreamer modules', 'c', gst_version = '>= @0@'.format(meson.project_version()) gst_branch = 'master' +warning(''' + +====================================================================================================== + + gst-build is now obsolete and has now been moved into the GStreamer monorepo, see + + https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/mono-repository.html + + for more details. + +====================================================================================================== + +''') + build_system = build_machine.system() cc = meson.get_compiler('c') @@ -388,3 +402,17 @@ run_target('update', command : [update, if orc_subproject.found() and orc_update_targets.length() > 0 alias_target('update-orc-dist', orc_update_targets) endif + +warning(''' + +====================================================================================================== + + gst-build is now obsolete and has now been moved into the GStreamer monorepo, see + + https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/mono-repository.html + + for more details. + +====================================================================================================== + +''') |