mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-12 13:30:10 -05:00
build-sys: meson: allow building client libraries only
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/540>
This commit is contained in:
parent
1a73fb9eb9
commit
424580a901
9 changed files with 291 additions and 188 deletions
|
|
@ -42,34 +42,36 @@ executable('pactl',
|
|||
c_args : pa_c_args,
|
||||
)
|
||||
|
||||
if host_machine.system() != 'windows'
|
||||
pasuspender_sources = [
|
||||
'pasuspender.c',
|
||||
]
|
||||
if get_option('daemon')
|
||||
if host_machine.system() != 'windows'
|
||||
pasuspender_sources = [
|
||||
'pasuspender.c',
|
||||
]
|
||||
|
||||
executable('pasuspender',
|
||||
pasuspender_sources,
|
||||
install: true,
|
||||
install_rpath : privlibdir,
|
||||
include_directories : [configinc, topinc],
|
||||
link_with : [libpulsecommon, libpulse],
|
||||
dependencies: [libintl_dep],
|
||||
c_args : pa_c_args,
|
||||
)
|
||||
executable('pasuspender',
|
||||
pasuspender_sources,
|
||||
install: true,
|
||||
install_rpath : privlibdir,
|
||||
include_directories : [configinc, topinc],
|
||||
link_with : [libpulsecommon, libpulse],
|
||||
dependencies: [libintl_dep],
|
||||
c_args : pa_c_args,
|
||||
)
|
||||
|
||||
pacmd_sources = [
|
||||
'pacmd.c',
|
||||
]
|
||||
pacmd_sources = [
|
||||
'pacmd.c',
|
||||
]
|
||||
|
||||
executable('pacmd',
|
||||
pacmd_sources,
|
||||
install: true,
|
||||
install_rpath : privlibdir,
|
||||
include_directories : [configinc, topinc],
|
||||
link_with : [libpulsecommon, libpulse],
|
||||
dependencies: [libintl_dep],
|
||||
c_args : pa_c_args,
|
||||
)
|
||||
executable('pacmd',
|
||||
pacmd_sources,
|
||||
install: true,
|
||||
install_rpath : privlibdir,
|
||||
include_directories : [configinc, topinc],
|
||||
link_with : [libpulsecommon, libpulse],
|
||||
dependencies: [libintl_dep],
|
||||
c_args : pa_c_args,
|
||||
)
|
||||
endif
|
||||
endif
|
||||
|
||||
if x11_dep.found()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue