devtools: Fix meson warning when calling add_languages()

WARNING: add_languages is missing native:, assuming languages are wanted for both host and build.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8753>
This commit is contained in:
Nirbheek Chauhan 2025-04-01 18:24:10 +05:30 committed by GStreamer Marge Bot
parent 2c39756b24
commit 48cbdf73a5

View File

@ -1,4 +1,4 @@
if not add_languages('rust', required: get_option('dots_viewer'))
if not add_languages('rust', required: get_option('dots_viewer'), native: false)
subdir_done()
endif