xref: /dpdk/drivers/net/octeontx/meson.build (revision e1369718f5530a2cb8268b5343ba1e80ff5da857)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017 Cavium, Inc
3
4if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
5    build = false
6    reason = 'only supported on 64-bit Linux'
7    subdir_done()
8endif
9
10subdir('base')
11objs = [base_objs]
12
13sources = files(
14        'octeontx_ethdev.c',
15        'octeontx_ethdev_ops.c',
16        'octeontx_rxtx.c',
17)
18
19deps += ['mempool_octeontx', 'eventdev']
20
21includes += include_directories('base')
22