mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Tested-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
23 lines
578 B
Meson
23 lines
578 B
Meson
quote_dep = dependency('quote-1-rs', native: true)
|
|
syn_dep = dependency('syn-2-rs', native: true)
|
|
proc_macro2_dep = dependency('proc-macro2-1-rs', native: true)
|
|
|
|
_qemu_api_macros_rs = rust.proc_macro(
|
|
'qemu_api_macros',
|
|
files('src/lib.rs'),
|
|
override_options: ['rust_std=2021', 'build.rust_std=2021'],
|
|
rust_args: [
|
|
'--cfg', 'use_fallback',
|
|
'--cfg', 'feature="syn-error"',
|
|
'--cfg', 'feature="proc-macro"',
|
|
],
|
|
dependencies: [
|
|
proc_macro2_dep,
|
|
quote_dep,
|
|
syn_dep,
|
|
],
|
|
)
|
|
|
|
qemu_api_macros = declare_dependency(
|
|
link_with: _qemu_api_macros_rs,
|
|
)
|