mirror of
https://github.com/qemu/qemu.git
synced 2026-04-24 07:02:58 +00:00
Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
331 B
Meson
15 lines
331 B
Meson
_bits_rs = static_library(
|
|
'bits',
|
|
'src/lib.rs',
|
|
dependencies: [qemu_macros],
|
|
)
|
|
|
|
bits_rs = declare_dependency(link_with: _bits_rs)
|
|
|
|
rust.test('rust-bits-tests', _bits_rs,
|
|
suite: ['unit', 'rust'])
|
|
|
|
rust.doctest('rust-bits-doctests', _bits_rs,
|
|
dependencies: bits_rs,
|
|
suite: ['doc', 'rust'])
|