net/hns3: fix timing in mailbox
[dpdk.git] / drivers / net / virtio / meson.build
index 01b8de6..d595cfd 100644 (file)
@@ -1,7 +1,15 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
-sources += files('virtio_ethdev.c',
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
+sources += files('virtio.c',
+       'virtio_ethdev.c',
+       'virtio_pci_ethdev.c',
        'virtio_pci.c',
        'virtio_rxtx.c',
        'virtio_rxtx_simple.c',
@@ -32,12 +40,11 @@ if arch_subdir == 'x86'
 elif arch_subdir == 'ppc'
        sources += files('virtio_rxtx_simple_altivec.c')
 elif arch_subdir == 'arm' and host_machine.cpu_family().startswith('aarch64')
+       sources += files('virtio_rxtx_packed.c')
        sources += files('virtio_rxtx_simple_neon.c')
 endif
 
 if is_linux
-       dpdk_conf.set('RTE_VIRTIO_USER', 1)
-
        sources += files('virtio_user_ethdev.c',
                'virtio_user/vhost_kernel.c',
                'virtio_user/vhost_kernel_tap.c',