New upstream version 18.11-rc1
[deb_dpdk.git] / lib / librte_vhost / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2018 Intel Corporation
3
4 if host_machine.system() != 'linux'
5         build = false
6 endif
7 if has_libnuma == 1
8         dpdk_conf.set10('RTE_LIBRTE_VHOST_NUMA', true)
9 endif
10 dpdk_conf.set('RTE_LIBRTE_VHOST_POSTCOPY',
11               cc.has_header('linux/userfaultfd.h'))
12 version = 4
13 allow_experimental_apis = true
14 cflags += '-fno-strict-aliasing'
15 sources = files('fd_man.c', 'iotlb.c', 'socket.c', 'vdpa.c',
16                 'vhost.c', 'vhost_user.c',
17                 'virtio_net.c', 'vhost_crypto.c')
18 headers = files('rte_vhost.h', 'rte_vdpa.h', 'rte_vhost_crypto.h')
19 deps += ['ethdev', 'cryptodev', 'hash', 'pci']