mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
meson: use newer version of pkgconfig.generate()
pkgconfig.generate() takes a positional argument, which is the library target for which to generate a pkgconfig file The previous way of adding the libpipewire target in the libraries list is deprecated in recent meson
This commit is contained in:
parent
59407d2f08
commit
19bcdaebe2
1 changed files with 2 additions and 2 deletions
|
|
@ -111,8 +111,8 @@ pipewire_dep = declare_dependency(link_with : libpipewire,
|
|||
dependencies : [pthread_lib, atomic_dep, ],
|
||||
)
|
||||
|
||||
pkgconfig.generate(filebase : 'lib@0@'.format(pipewire_name),
|
||||
libraries : [libpipewire],
|
||||
pkgconfig.generate(libpipewire,
|
||||
filebase : 'lib@0@'.format(pipewire_name),
|
||||
requires : ['lib@0@'.format(spa_name)],
|
||||
name : 'libpipewire',
|
||||
subdirs : pipewire_name,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue