mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 20:31:36 +00:00
7c613ec347
Generating those files is useful for users building the GStreamer stack using meson and having to link it to another project which is still using the autotools. Fixed the -uninstalled pc file libdir path while I was on it. https://bugzilla.gnome.org/show_bug.cgi?id=776810
24 lines
958 B
Meson
24 lines
958 B
Meson
pkgconf = configuration_data()
|
|
|
|
pkgconf.set('prefix', get_option('prefix'))
|
|
pkgconf.set('exec_prefix', '${prefix}')
|
|
pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
|
|
pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
|
|
pkgconf.set('GST_API_VERSION', apiversion)
|
|
pkgconf.set('VERSION', gst_version)
|
|
|
|
# needed for generating -uninstalled.pc files
|
|
pkgconf.set('abs_top_builddir', join_paths(meson.current_build_dir(), '..'))
|
|
pkgconf.set('abs_top_srcdir', join_paths(meson.current_source_dir(), '..'))
|
|
pkgconf.set('validatelibdir', join_paths(meson.build_root(), gstvalidate.outdir()))
|
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
configure_file(input : 'gst-validate.pc.in',
|
|
output : 'gst-validate-1.0.pc',
|
|
configuration : pkgconf,
|
|
install_dir : pkg_install_dir)
|
|
|
|
configure_file(input : 'gst-validate-uninstalled.pc.in',
|
|
output : 'gst-validate-1.0-uninstalled.pc',
|
|
configuration : pkgconf)
|