mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
meson: convert dump/
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
0e1309d0c5
commit
708eab42dc
6 changed files with 18 additions and 6 deletions
|
@ -300,6 +300,14 @@ if 'CONFIG_FDT' in config_host
|
|||
fdt = declare_dependency(compile_args: config_host['FDT_CFLAGS'].split(),
|
||||
link_args: config_host['FDT_LIBS'].split())
|
||||
endif
|
||||
snappy = not_found
|
||||
if 'CONFIG_SNAPPY' in config_host
|
||||
snappy = declare_dependency(link_args: config_host['SNAPPY_LIBS'].split())
|
||||
endif
|
||||
lzo = not_found
|
||||
if 'CONFIG_LZO' in config_host
|
||||
lzo = declare_dependency(link_args: config_host['LZO_LIBS'].split())
|
||||
endif
|
||||
|
||||
create_config = find_program('scripts/create_config')
|
||||
minikconf = find_program('scripts/minikconf.py')
|
||||
|
@ -607,6 +615,7 @@ subdir('io')
|
|||
subdir('chardev')
|
||||
subdir('fsdev')
|
||||
subdir('target')
|
||||
subdir('dump')
|
||||
|
||||
block_ss.add(files(
|
||||
'block.c',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue