mirror of https://github.com/F-Stack/f-stack.git
21 lines
408 B
Meson
21 lines
408 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
version = 2
|
|
|
|
allow_experimental_apis = true
|
|
|
|
install_headers('rte_bus_vmbus.h','rte_vmbus_reg.h')
|
|
|
|
sources = files('vmbus_common.c',
|
|
'vmbus_channel.c',
|
|
'vmbus_bufring.c',
|
|
'vmbus_common_uio.c')
|
|
|
|
if host_machine.system() == 'linux'
|
|
sources += files('linux/vmbus_bus.c',
|
|
'linux/vmbus_uio.c')
|
|
includes += include_directories('linux')
|
|
else
|
|
build = false
|
|
endif
|