mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
ab614e63ae
Removing the now useless getplugindirs script
36 lines
1.4 KiB
Meson
36 lines
1.4 KiB
Meson
executable('gst-validate-' + apiversion,
|
|
'gst-validate.c',
|
|
install: true,
|
|
include_directories : inc_dirs,
|
|
dependencies : [gst_dep, glib_dep, gst_pbutils_dep, gio_dep],
|
|
c_args : [gst_c_args],
|
|
link_with : [gstvalidate]
|
|
)
|
|
executable('gst-validate-transcoding-' + apiversion,
|
|
'gst-validate-transcoding.c', install: true,
|
|
include_directories : inc_dirs,
|
|
dependencies : [gst_dep, glib_dep, gst_pbutils_dep, gst_video_dep, gio_dep],
|
|
c_args : [gst_c_args],
|
|
link_with : [gstvalidate]
|
|
)
|
|
executable('gst-validate-media-check-' + apiversion,
|
|
'gst-validate-media-check.c',
|
|
install: true,
|
|
include_directories : inc_dirs,
|
|
dependencies : [gst_dep, glib_dep, gst_pbutils_dep, gio_dep],
|
|
c_args : [gst_c_args],
|
|
link_with : [gstvalidate]
|
|
)
|
|
|
|
tmpconf = configuration_data()
|
|
tmpconf.set('LIBDIR', get_option('prefix') + '/' + get_option('datadir') +
|
|
'/' + get_option('libdir'))
|
|
tmpconf.set('BUILDDIR', meson.current_build_dir())
|
|
tmpconf.set('SRCDIR', meson.current_source_dir())
|
|
|
|
configure_file(input : 'gst-validate-launcher.in',
|
|
install_dir: get_option('bindir'),
|
|
output : 'gst-validate-launcher',
|
|
configuration : tmpconf)
|
|
|
|
launcher = find_program(meson.current_build_dir() + '/gst-validate-launcher')
|