mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-10 05:31:29 +00:00
19 lines
295 B
Meson
19 lines
295 B
Meson
|
secret_driver_sources = [
|
||
|
'secret_driver.c',
|
||
|
]
|
||
|
|
||
|
if conf.has('WITH_SECRETS')
|
||
|
virt_modules += {
|
||
|
'name': 'virt_driver_secret',
|
||
|
'sources': [
|
||
|
files(secret_driver_sources),
|
||
|
],
|
||
|
'deps': [
|
||
|
access_dep,
|
||
|
],
|
||
|
'link_args': [
|
||
|
libvirt_no_undefined,
|
||
|
],
|
||
|
}
|
||
|
endif
|