9c1e0dc39a
The EAL API (with doxygen documentation) is moved from common/include/ to include/, which makes more clear that it is the global API for all environments and architectures. Note that the arch-specific and OS-specific include files are not in this global include directory, but include/generic/ should cover the doxygen documentation for them. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
15 lines
409 B
Meson
15 lines
409 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if host_machine.system() == 'windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
pmdinfogen_inc = [global_inc]
|
|
pmdinfogen_inc += include_directories('../../lib/librte_eal/include')
|
|
pmdinfogen_inc += include_directories('../../lib/librte_pci')
|
|
pmdinfogen = executable('pmdinfogen',
|
|
'pmdinfogen.c',
|
|
include_directories: pmdinfogen_inc,
|
|
native: true)
|