mesa/subprojects/packagefiles/paste/meson.build
Faith Ekstrand 4c59ed19db subprojects: Stop calling add_languages() in paste-1-rs/meson.build
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36849>
(cherry picked from commit 291ccffd3d)
2025-08-27 08:59:51 +02:00

17 lines
No EOL
226 B
Meson

project(
'paste',
'rust',
version : '1.0.14',
license : '(MIT or Apache-2.0)',
)
rust = import('rust')
lib = rust.proc_macro(
'paste',
files('src/lib.rs')
)
dep_paste = declare_dependency(
link_with : [lib],
)