Files
third_party_mesa3d/subprojects/packagefiles/roxmltree/meson.build
Christian Gmeiner 02bc51f477 meson: Add roxmltree rust dependency
Will be used for a simple isaspec implementation in rust.

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Reviewed-by: @LingMan
Reviewed-by: Eric Engestrom <eric@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28869>
2024-07-03 00:07:54 +00:00

19 lines
307 B
Meson

project(
'roxmltree',
'rust',
version : '0.20.0',
license :'MIT OR Apache-2.0',
)
lib = static_library(
'roxmltree',
'src/lib.rs',
override_options : ['rust_std=2021', 'build.rust_std=2021'],
rust_abi : 'rust',
native : true,
)
dep_roxmltree = declare_dependency(
link_with : [lib],
)