mesa/subprojects/packagefiles/roxmltree-0.20-rs/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
357 B
Meson
Raw Normal View History

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