gstreamer/subprojects/gst-plugins-ugly/ext/x264/meson.build
Xavier Claessens 3d8372cc50 devenv: Add some missing GStreamer specific env variables
This should make "meson devenv" closer to what "gst-env.py" sets.

- GST_VALIDATE_SCENARIOS_PATH
- GST_VALIDATE_APPS_DIR
- GST_OMX_CONFIG_DIR
- GST_ENCODING_TARGET_PATH
- GST_PRESET_PATH
- GST_PLUGIN_SCANNER
- GST_PTP_HELPER
- _GI_OVERRIDES_PATH

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1768>
2022-02-25 20:35:26 +00:00

40 lines
1.2 KiB
Meson

x264_opt = get_option('x264').require(gpl_allowed, error_message: '''
Plugin x264 explicitly required via options but GPL-licensed plugins disabled via options.
Pass option -Dgpl=enabled to Meson to allow GPL-licensed plugins to be built.
''')
x264_sources = [
'gstx264enc.c',
'gstencoderbitrateprofilemanager.c',
]
x264_dep = dependency('x264', required : x264_opt,
fallback: ['x264', 'libx264_dep'])
if x264_dep.found()
x264_libraries = get_option('x264_libraries')
x264_args = []
if x264_libraries != ''
x264_args += ['-DHAVE_X264_ADDITIONAL_LIBRARIES="@0@"'.format(x264_libraries)]
extra_gmodule_dep = [gmodule_dep]
else
extra_gmodule_dep = []
endif
gstx264 = library('gstx264',
x264_sources,
c_args : ugly_args + x264_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep, gstpbutils_dep, x264_dep] + extra_gmodule_dep,
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstx264, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstx264]
install_data(sources: 'GstX264Enc.prs', install_dir: presetdir)
env = environment()
env.prepend('GST_PRESET_PATH', meson.current_source_dir())
meson.add_devenv(env)
endif