mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
15 lines
398 B
Meson
15 lines
398 B
Meson
jp2_sources = [
|
|
'gstjp2kdecimator.c',
|
|
'jp2kcodestream.c',
|
|
]
|
|
|
|
gstjp2kdecimator = library('gstjp2kdecimator',
|
|
jp2_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstjp2kdecimator, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstjp2kdecimator]
|