mesa/subprojects/packagefiles/paste-1-rs/meson.build
Faith Ekstrand 291ccffd3d 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>
2025-08-20 17:06:47 +00: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],
)