mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
17 lines
367 B
Meson
17 lines
367 B
Meson
nle_sources = ['nleobject.c',
|
|
'nlecomposition.c',
|
|
'nleghostpad.c',
|
|
'nleoperation.c',
|
|
'nlesource.c',
|
|
'nleurisource.c',
|
|
'gstnle.c'
|
|
]
|
|
|
|
nle = library('gstnle', nle_sources,
|
|
dependencies : [gst_dep, gstbase_dep],
|
|
include_directories: [configinc],
|
|
c_args : ges_c_args,
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [nle]
|