30105f664f
A lot of drivers export headers, reproduce the same facility than for libraries. Note: this change fixes an issue with the crypto scheduler headers which were not installed properly. A separate backport will be sent to stable branches. Suggested-by: Bruce Richardson <bruce.richardson@intel.com> Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
25 lines
464 B
Meson
25 lines
464 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
|
|
headers = files('rte_bus_vmbus.h','rte_vmbus_reg.h')
|
|
|
|
sources = files('vmbus_common.c',
|
|
'vmbus_channel.c',
|
|
'vmbus_bufring.c',
|
|
'vmbus_common_uio.c')
|
|
|
|
if is_linux
|
|
sources += files('linux/vmbus_bus.c',
|
|
'linux/vmbus_uio.c')
|
|
includes += include_directories('linux')
|
|
else
|
|
build = false
|
|
reason = 'only supported on linux'
|
|
endif
|