gstreamer/subprojects/gst-plugins-bad/sys/winks/meson.build

48 lines
1.4 KiB
Meson

winks_sources = [
'gstksclock.c',
'gstksvideodevice.c',
'gstksvideosrc.c',
'ksdeviceprovider.c',
'kshelpers.c',
'ksvideohelpers.c',
]
winks_headers = [
'gstksvideodevice.h',
'ksvideohelpers.h',
'ksdeviceprovider.h',
'kshelpers.h',
'gstksvideosrc.h',
'gstksclock.h',
]
doc_sources = []
foreach s: winks_sources + winks_headers
doc_sources += meson.current_source_dir() / s
endforeach
plugin_sources += {
'winks': pathsep.join(doc_sources)
}
winks_option = get_option('winks')
if host_system == 'windows' and not winks_option.disabled()
# FIXME: Add a way to skip this library when these deps are not found. Not
# urgent because these are always available when building for Windows.
winks_dep = [cc.find_library('ksuser', required : winks_option),
cc.find_library('uuid', required : winks_option),
cc.find_library('strmiids', required : winks_option),
cc.find_library('dxguid', required : winks_option),
cc.find_library('setupapi', required : winks_option),
cc.find_library('ole32', required : winks_option)]
gstwinks = library('gstwinks',
winks_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep] + winks_dep,
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstwinks]
endif