xref: /dpdk/lib/eal/linux/meson.build (revision 09ce41310930ef73b4c900270de69286e13ff2e8)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2017 Intel Corporation
3
4subdir('include')
5
6sources += files(
7        'eal.c',
8        'eal_alarm.c',
9        'eal_cpuflags.c',
10        'eal_dev.c',
11        'eal_hugepage_info.c',
12        'eal_interrupts.c',
13        'eal_lcore.c',
14        'eal_memalloc.c',
15        'eal_memory.c',
16        'eal_thread.c',
17        'eal_timer.c',
18        'eal_vfio.c',
19        'eal_vfio_mp_sync.c',
20)
21
22deps += ['kvargs', 'telemetry']
23if has_libnuma
24    dpdk_conf.set10('RTE_EAL_NUMA_AWARE_HUGEPAGES', true)
25endif
26