mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
meson: convert authz directory to Meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
de59dda32d
commit
5e7fbd2515
6 changed files with 27 additions and 10 deletions
|
@ -103,6 +103,10 @@ if 'CONFIG_GNUTLS' in config_host
|
|||
endif
|
||||
pixman = declare_dependency(compile_args: config_host['PIXMAN_CFLAGS'].split(),
|
||||
link_args: config_host['PIXMAN_LIBS'].split())
|
||||
pam = not_found
|
||||
if 'CONFIG_AUTH_PAM' in config_host
|
||||
pam = cc.find_library('pam')
|
||||
endif
|
||||
libattr = not_found
|
||||
if 'CONFIG_ATTR' in config_host
|
||||
libattr = declare_dependency(link_args: config_host['LIBATTR_LIBS'].split())
|
||||
|
@ -341,6 +345,7 @@ qemuutil = declare_dependency(link_with: libqemuutil,
|
|||
sources: genh + version_res)
|
||||
|
||||
subdir('qom')
|
||||
subdir('authz')
|
||||
subdir('fsdev')
|
||||
|
||||
# Other build targets
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue