mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
daa1519e3d
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>
25 lines
490 B
Meson
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]
|