mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
parent
514836eebe
commit
c9354c238f
6 changed files with 17 additions and 0 deletions
|
|
@ -33,6 +33,7 @@ executable('spa-acp-tool',
|
|||
dependencies : [ alsa_dep, mathlib ],
|
||||
link_with : [ acp_lib ],
|
||||
install : true,
|
||||
pie : true,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -193,5 +193,6 @@ if sndfile_dep.found()
|
|||
link_with : [ audioconvert, test_lib ],
|
||||
dependencies : [sndfile_dep, mathlib],
|
||||
install : true,
|
||||
pie : true,
|
||||
)
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
executable('spa-inspect', 'spa-inspect.c',
|
||||
include_directories : [spa_inc],
|
||||
dependencies : [dl_lib, ],
|
||||
pie : true,
|
||||
install : true)
|
||||
|
||||
executable('spa-monitor', 'spa-monitor.c',
|
||||
include_directories : [spa_inc],
|
||||
dependencies : [dl_lib, ],
|
||||
pie : true,
|
||||
install : true)
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ configure_file(input : 'pipewire.conf.in',
|
|||
executable('pipewire',
|
||||
pipewire_daemon_sources,
|
||||
install: true,
|
||||
pie: true,
|
||||
c_args : pipewire_c_args,
|
||||
include_directories : [configinc, spa_inc],
|
||||
dependencies : [pipewire_dep, ],
|
||||
|
|
@ -50,6 +51,7 @@ executable('pipewire',
|
|||
executable('pipewire-pulse',
|
||||
'pipewire-pulse.c',
|
||||
install: true,
|
||||
pie: true,
|
||||
c_args : pipewire_c_args,
|
||||
include_directories : [configinc, spa_inc],
|
||||
dependencies : [pipewire_dep, ],
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ if alsa_dep.found()
|
|||
'media-session/suspend-node.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [dbus_dep, pipewire_dep, alsa_dep, mathlib],
|
||||
)
|
||||
endif
|
||||
|
|
@ -99,6 +100,7 @@ executable('pw-reserve',
|
|||
'media-session/pw-reserve.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [dbus_dep, pipewire_dep],
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -2,18 +2,21 @@ executable('pw-mon',
|
|||
'pw-mon.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
executable('pw-cli',
|
||||
'pw-cli.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
executable('pw-dot',
|
||||
'pw-dot.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
|
||||
|
|
@ -21,6 +24,7 @@ executable('pw-dump',
|
|||
'pw-dump.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
|
||||
|
|
@ -28,6 +32,7 @@ executable('pw-profiler',
|
|||
'pw-profiler.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
|
||||
|
|
@ -35,6 +40,7 @@ executable('pw-mididump',
|
|||
[ 'pw-mididump.c', 'midifile.c'],
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep, mathlib],
|
||||
)
|
||||
|
||||
|
|
@ -42,6 +48,7 @@ executable('pw-metadata',
|
|||
[ 'pw-metadata.c'],
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep],
|
||||
)
|
||||
|
||||
|
|
@ -50,6 +57,7 @@ if ncurses_dep.found()
|
|||
'pw-top.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [pipewire_dep, ncurses_dep],
|
||||
)
|
||||
endif
|
||||
|
|
@ -72,6 +80,7 @@ if get_option('pw-cat') and sndfile_dep.found()
|
|||
pwcat_sources,
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: true,
|
||||
pie: true,
|
||||
dependencies : [sndfile_dep, pipewire_dep, mathlib],
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue