numam-dpdk/buildtools/meson.build
Bruce Richardson 4c773788e0 build: generate Windows exports file
Rather than having a separate version.map file for linux/BSD and an
exports definition file for windows for each library, generate the
latter from the former automatically at build time.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2019-06-05 19:49:28 +02:00

15 lines
432 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017-2019 Intel Corporation
subdir('pmdinfogen')
pmdinfo = find_program('gen-pmdinfo-cfile.sh')
# set up map-to-def script using python, either built-in or external
python3 = import('python').find_installation(required: false)
if python3.found()
map_to_def_cmd = [python3, files('map_to_def.py')]
else
map_to_def_cmd = ['meson', 'runpython', files('map_to_def.py')]
endif