QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
805 B
23 lines
805 B
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
if not have_system
|
|
subdir_done()
|
|
endif
|
|
|
|
modinfo_dep = not_found
|
|
if enable_modules
|
|
modinfo_src = custom_target('modinfo.c',
|
|
output: 'modinfo.c',
|
|
input: audio_modinfo_files,
|
|
command: [modinfo_generate, '--skip-missing-deps', '@INPUT@'],
|
|
capture: true)
|
|
|
|
modinfo_lib = static_library('modinfo.c', modinfo_src)
|
|
modinfo_dep = declare_dependency(link_with: modinfo_lib)
|
|
endif
|
|
|
|
# manual audio test - not part of automated test suite
|
|
# as it relies on audio system
|
|
executable('test-audio',
|
|
sources: [files('test-audio.c', 'audio-stubs.c'), dbus_display1],
|
|
dependencies: [audio, qemuutil, modinfo_dep, gio, spice, sdl])
|
|
|