4c773788e0
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>
15 lines
432 B
Meson
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
|