pipewire/spa/plugins/meson.build
Barnabás Pőcze 68ff3ad841 treewide: meson.build: use host_machine instead of build_machine
At the moment, cross compilation may not work in certain cases because
checks are carried out against the build machine instead of the host machine.
Replace uses of `build_machine` with `host_machine` to fix that.

In native compilation, all three "machine objects" available in meson
are the same, so this change should have no effect in that case.

More: https://mesonbuild.com/Cross-compilation.html
2022-08-17 07:34:20 +00:00

58 lines
1.3 KiB
Meson

if alsa_dep.found()
subdir('alsa')
endif
if get_option('avb').require(host_machine.system() == 'linux', error_message: 'AVB support is only available on Linux').allowed()
subdir('avb')
endif
if get_option('audioconvert').allowed()
subdir('audioconvert')
endif
if get_option('audiomixer').allowed()
subdir('audiomixer')
endif
if get_option('control').allowed()
subdir('control')
endif
if get_option('audiotestsrc').allowed()
subdir('audiotestsrc')
endif
if bluez_dep.found()
subdir('bluez5')
endif
if avcodec_dep.found()
subdir('ffmpeg')
endif
if jack_dep.found()
subdir('jack')
endif
if get_option('support').allowed()
subdir('support')
endif
if get_option('test').allowed()
subdir('test')
endif
if get_option('videoconvert').allowed()
subdir('videoconvert')
endif
if get_option('videotestsrc').allowed()
subdir('videotestsrc')
endif
if get_option('volume').allowed()
subdir('volume')
endif
if vulkan_headers
subdir('vulkan')
endif
v4l2_header_found = cc.has_header('linux/videodev2.h', required: get_option('v4l2'))
v4l2_supported = libudev_dep.found() and v4l2_header_found
summary({'V4L2 kernel header': v4l2_header_found}, bool_yn: true, section: 'Backend')
summary({'V4L2 enabled': v4l2_supported}, bool_yn: true, section: 'Backend')
if v4l2_supported
subdir('v4l2')
endif
if libcamera_dep.found()
subdir('libcamera')
endif
subdir('aec')