f2aa8934181ff02000de8f301c61cdba598aa9a7
[dpdk.git] / drivers / net / cnxk / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2021 Marvell.
3 #
4
5 if not dpdk_conf.get('RTE_ARCH_64')
6     build = false
7     reason = 'only supported on 64-bit'
8     subdir_done()
9 endif
10
11 sources = files(
12         'cnxk_ethdev.c',
13         'cnxk_ethdev_devargs.c',
14         'cnxk_ethdev_ops.c',
15         'cnxk_link.c',
16         'cnxk_lookup.c',
17 )
18
19 # CN9K
20 sources += files(
21         'cn9k_ethdev.c',
22 )
23 # CN10K
24 sources += files(
25         'cn10k_ethdev.c',
26 )
27
28 deps += ['bus_pci', 'cryptodev', 'eventdev', 'security']
29 deps += ['common_cnxk', 'mempool_cnxk']