gstreamer/subprojects/gst-editing-services/plugins/nle/meson.build
Thibault Saunier daa1519e3d nle: Add validate tests support
This allows us to start testing internal of the elements by linking
the nle pluging directly with validate and implement validate
tests with specific action types.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5035>
2024-10-19 10:30:05 +00:00

25 lines
490 B
Meson

nle_sources = ['nleobject.c',
'nlecomposition.c',
'nleghostpad.c',
'nleoperation.c',
'nlesource.c',
'nleurisource.c',
'gstnle.c'
]
deps = [gst_dep, gstbase_dep]
c_args = ges_c_args
if gstvalidate_dep.found()
deps += [gstvalidate_dep]
nle_sources += ['validate.c']
endif
nle = library('gstnle', nle_sources,
dependencies : deps,
include_directories: [configinc],
c_args : c_args,
install : true,
install_dir : plugins_install_dir,
)
plugins += [nle]