gstreamer/tests/meson.build
Nirbheek Chauhan 9e0ce7649d 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/7343>
2024-08-13 09:42:55 +01: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')