mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
meson: create soft link for 'pipewire-uninstalled', fix gdb target in Makefile
This commit is contained in:
parent
a9c247bdab
commit
762663e74e
2 changed files with 13 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ run: all
|
||||||
PIPEWIRE_CONFIG_DIR=@BUILD_ROOT@/src/daemon/ \
|
PIPEWIRE_CONFIG_DIR=@BUILD_ROOT@/src/daemon/ \
|
||||||
ACP_PATHS_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/paths \
|
ACP_PATHS_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/paths \
|
||||||
ACP_PROFILES_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/profile-sets \
|
ACP_PROFILES_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/profile-sets \
|
||||||
$(DBG) @BUILD_ROOT@/src/daemon/pipewire -c pipewire-uninstalled.conf
|
$(DBG) @BUILD_ROOT@/src/daemon/pipewire-uninstalled
|
||||||
|
|
||||||
run-pulse: all
|
run-pulse: all
|
||||||
SPA_PLUGIN_DIR=@BUILD_ROOT@/spa/plugins \
|
SPA_PLUGIN_DIR=@BUILD_ROOT@/spa/plugins \
|
||||||
|
|
@ -25,7 +25,7 @@ run-pulse: all
|
||||||
PIPEWIRE_CONFIG_DIR=@BUILD_ROOT@/src/daemon/ \
|
PIPEWIRE_CONFIG_DIR=@BUILD_ROOT@/src/daemon/ \
|
||||||
ACP_PATHS_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/paths \
|
ACP_PATHS_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/paths \
|
||||||
ACP_PROFILES_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/profile-sets \
|
ACP_PROFILES_DIR=@SOURCE_ROOT@/spa/plugins/alsa/mixer/profile-sets \
|
||||||
$(DBG) @BUILD_ROOT@/src/daemon/pipewire-pulse -c pipewire-pulse.conf
|
$(DBG) @BUILD_ROOT@/src/daemon/pipewire-pulse
|
||||||
|
|
||||||
gdb:
|
gdb:
|
||||||
$(MAKE) run DBG=gdb
|
$(MAKE) run DBG=gdb
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ configure_file(input : 'pipewire.conf.in',
|
||||||
output : 'pipewire-uninstalled.conf',
|
output : 'pipewire-uninstalled.conf',
|
||||||
configuration : conf_config_uninstalled)
|
configuration : conf_config_uninstalled)
|
||||||
|
|
||||||
executable('pipewire',
|
pipewire_exec = executable('pipewire',
|
||||||
pipewire_daemon_sources,
|
pipewire_daemon_sources,
|
||||||
install: true,
|
install: true,
|
||||||
c_args : pipewire_c_args,
|
c_args : pipewire_c_args,
|
||||||
|
|
@ -61,6 +61,16 @@ executable('pipewire-pulse',
|
||||||
dependencies : [pipewire_dep, ],
|
dependencies : [pipewire_dep, ],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
ln = find_program('ln')
|
||||||
|
|
||||||
|
custom_target('pipewire-uninstalled',
|
||||||
|
build_by_default: true,
|
||||||
|
install: false,
|
||||||
|
input: pipewire_exec,
|
||||||
|
output: 'pipewire-uninstalled',
|
||||||
|
command: [ln, '-fsr', '@INPUT@', '@OUTPUT@'],
|
||||||
|
)
|
||||||
|
|
||||||
#desktop_file = i18n.merge_file(
|
#desktop_file = i18n.merge_file(
|
||||||
# input : 'pipewire.desktop.in',
|
# input : 'pipewire.desktop.in',
|
||||||
# output : 'pipewire.desktop',
|
# output : 'pipewire.desktop',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue