mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
12 lines
432 B
Meson
12 lines
432 B
Meson
|
if cairo_dep.found()
|
||
|
shared_library('gstvalidatessim',
|
||
|
'gstvalidatessim.c',
|
||
|
include_directories : inc_dirs,
|
||
|
link_with: [video, gstvalidate],
|
||
|
dependencies : [gst_dep, gst_video_dep, glib_dep, cairo_dep],
|
||
|
install : true,
|
||
|
install_dir : validate_plugins_install_dir,
|
||
|
c_args: ['-DHAVE_CONFIG_H'],
|
||
|
)
|
||
|
endif
|