build: remove redundant config include
[dpdk.git] / buildtools / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2019 Intel Corporation
3
4 subdir('pmdinfogen')
5
6 pmdinfo = find_program('gen-pmdinfo-cfile.sh')
7 list_dir_globs = find_program('list-dir-globs.py')
8 check_experimental_syms = find_program('check-experimental-syms.sh')
9
10 # set up map-to-def script using python, either built-in or external
11 python3 = import('python').find_installation(required: false)
12 if python3.found()
13         py3 = [python3]
14 else
15         py3 = ['meson', 'runpython']
16 endif
17 map_to_def_cmd = py3 + files('map_to_def.py')
18 sphinx_wrapper = py3 + files('call-sphinx-build.py')
19
20 # stable ABI always starts with "DPDK_"
21 is_experimental_cmd = [find_program('grep', 'findstr'), '^DPDK_']