mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
build-sys: meson: Correctly set up RPATH
This was being done automatically by autotools, now we need to manually specify this for each executable/library with a dependency in a non-standard directory.
This commit is contained in:
parent
f996ad0688
commit
7f44a623e0
12 changed files with 35 additions and 0 deletions
|
|
@ -78,6 +78,7 @@ libpulse = shared_library('pulse',
|
|||
c_args : [pa_c_args],
|
||||
link_args : [nodelete_link_args],
|
||||
install : true,
|
||||
install_rpath : privlibdir,
|
||||
dependencies : [libm_dep, thread_dep, libpulsecommon_dep, dbus_dep],
|
||||
implicit_include_directories : false)
|
||||
|
||||
|
|
@ -97,6 +98,7 @@ libpulse_simple = shared_library('pulse-simple',
|
|||
include_directories : [configinc, topinc],
|
||||
dependencies : [libpulse_dep, libpulsecommon_dep],
|
||||
install : true,
|
||||
install_rpath : privlibdir,
|
||||
)
|
||||
|
||||
libpulse_simple_dep = declare_dependency(link_with: libpulse_simple)
|
||||
|
|
@ -111,6 +113,7 @@ if glib_dep.found()
|
|||
include_directories : [configinc, topinc],
|
||||
dependencies : [libpulse_dep, libpulsecommon_dep, glib_dep],
|
||||
install : true,
|
||||
install_rpath : privlibdir,
|
||||
)
|
||||
|
||||
libpulse_mainloop_glib_dep = declare_dependency(link_with: libpulse_mainloop_glib)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue