f-stack/dpdk/buildtools/meson.build

20 lines
736 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
2020-06-18 16:55:50 +00:00
# Copyright(c) 2017-2019 Intel Corporation
2019-06-25 11:12:58 +00:00
2020-06-18 16:55:50 +00:00
pkgconf = find_program('pkg-config', 'pkgconf', required: false)
2019-06-25 11:12:58 +00:00
pmdinfo = find_program('gen-pmdinfo-cfile.sh')
2021-02-05 08:48:47 +00:00
list_dir_globs = find_program('list-dir-globs.py')
check_symbols = find_program('check-symbols.sh')
2020-06-18 16:55:50 +00:00
ldflags_ibverbs_static = find_program('options-ibverbs-static.sh')
2021-02-05 08:48:47 +00:00
binutils_avx512_check = find_program('binutils-avx512-check.sh')
2020-06-18 16:55:50 +00:00
2021-02-05 08:48:47 +00:00
# set up map-to-win script using python, either built-in or external
2020-06-18 16:55:50 +00:00
python3 = import('python').find_installation(required: false)
if python3.found()
2021-01-28 17:08:59 +00:00
py3 = [python3]
2020-06-18 16:55:50 +00:00
else
2021-01-28 17:08:59 +00:00
py3 = ['meson', 'runpython']
2020-06-18 16:55:50 +00:00
endif
2021-02-05 08:48:47 +00:00
map_to_win_cmd = py3 + files('map_to_win.py')
2021-01-28 17:08:59 +00:00
sphinx_wrapper = py3 + files('call-sphinx-build.py')