common/iavf: build on Windows
[dpdk.git] / drivers / common / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 if is_windows
6         build = false
7         reason = 'not supported on Windows'
8         subdir_done()
9 endif
10
11 if not dpdk_conf.get('RTE_ARCH_64')
12         build = false
13         reason = 'only supported on 64-bit'
14         subdir_done()
15 endif
16
17 sources= files('otx2_dev.c',
18                 'otx2_irq.c',
19                 'otx2_mbox.c',
20                 'otx2_common.c',
21                 'otx2_sec_idev.c',
22                )
23
24 deps = ['eal', 'pci', 'ethdev', 'kvargs']
25 includes += include_directories('../../common/octeontx2',
26                 '../../mempool/octeontx2', '../../bus/pci')