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