gstreamer/tests/meson.build
Nirbheek Chauhan 9cc363311d meson: Add an option to disable gst-full
Not all static-library build configurations need to use this, and the
CPU time and RAM needed by gst-full targets is quite significant.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7315>
2024-08-13 01:01:28 +00:00

8 lines
139 B
Meson

if get_option('tests').disabled()
subdir_done()
endif
if building_full
subdir('static-plugins')
endif
subdir('python')
subdir('virtme')