mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 07:00:12 +01:00
Reviewed-by: Mel Henning <mhenning@darkrefraction.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36849>
17 lines
No EOL
226 B
Meson
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],
|
|
) |