mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 18:10:11 +01:00
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)
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],
|
|
) |