mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
meson: Do not generate .pc files for libgstcheck on windows
The lib is not built
This commit is contained in:
parent
4bb8e5c191
commit
ba8c433394
1 changed files with 5 additions and 2 deletions
|
@ -11,7 +11,6 @@ pkgconf.set('VERSION', gst_version)
|
|||
pkgconf.set('abs_top_builddir', join_paths(meson.current_build_dir(), '..'))
|
||||
pkgconf.set('abs_top_srcdir', join_paths(meson.current_source_dir(), '..'))
|
||||
pkgconf.set('gstlibdir', join_paths(meson.build_root(), libgst.outdir()))
|
||||
pkgconf.set('checklibdir', join_paths(meson.build_root(), gst_check.outdir()))
|
||||
pkgconf.set('baselibdir', join_paths(meson.build_root(), gst_base.outdir()))
|
||||
pkgconf.set('controllerlibdir', join_paths(meson.build_root(), gst_controller.outdir()))
|
||||
pkgconf.set('netlibdir', join_paths(meson.build_root(), gst_net.outdir()))
|
||||
|
@ -19,12 +18,16 @@ pkgconf.set('netlibdir', join_paths(meson.build_root(), gst_net.outdir()))
|
|||
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
||||
|
||||
pkg_files = ['gstreamer-base',
|
||||
'gstreamer-check',
|
||||
'gstreamer-controller',
|
||||
'gstreamer-net',
|
||||
'gstreamer'
|
||||
]
|
||||
|
||||
if host_machine.system() != 'windows'
|
||||
pkgconf.set('checklibdir', join_paths(meson.build_root(), gst_check.outdir()))
|
||||
pkg_files += ['gstreamer-check']
|
||||
endif
|
||||
|
||||
foreach p : pkg_files
|
||||
infile = p + '.pc.in'
|
||||
outfile = p + '-1.0.pc'
|
||||
|
|
Loading…
Reference in a new issue