mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b7e78d84b4
osxaudio is for macOS and iOS osxvideo is for macOS waveform is for Windows
27 lines
849 B
Meson
27 lines
849 B
Meson
waveformsink_sources = [
|
|
'gstwaveformsink.c',
|
|
'gstwaveformplugin.c',
|
|
]
|
|
|
|
have_waveform = false
|
|
waveform_option = get_option('waveform')
|
|
if host_system != 'windows' or waveform_option.disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
# TODO: https://github.com/mesonbuild/meson/issues/3940
|
|
have_waveform = cc.has_header('mmsystem.h', prefix : '#include <windows.h>')
|
|
if not have_waveform and waveform_option.enabled()
|
|
error('waveform plugin was enabled but mmsystem.h was not found')
|
|
endif
|
|
|
|
if have_waveform
|
|
gstwaveformsink = library('gstwaveform',
|
|
waveformsink_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, cc.find_library('winmm')],
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
pkgconfig.generate(gstwaveformsink, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|