b962a1d507
This will be needed as soon as config-poison.h moves from configure to a meson custom_target (which is built at "ninja" time). Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
10 lines
351 B
Meson
10 lines
351 B
Meson
if 'CONFIG_PVRDMA' in config_host
|
|
# if not found, CONFIG_PVRDMA should not be set
|
|
# FIXME: broken on big endian architectures
|
|
libumad = cc.find_library('ibumad', required: true)
|
|
executable('rdmacm-mux', files('main.c'), genh,
|
|
dependencies: [glib, libumad],
|
|
build_by_default: false,
|
|
install: false)
|
|
endif
|