mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
meson: replace join_paths(a, b) with a / b
More readable and from the meson reference manual: (since 0.49.0) Using the/ operator on strings is equivalent to calling join_paths.
This commit is contained in:
parent
2f78829fda
commit
223f20709d
34 changed files with 98 additions and 98 deletions
|
|
@ -12,7 +12,7 @@ spa_support_lib = shared_library('spa-support',
|
|||
include_directories : [ spa_inc ],
|
||||
dependencies : [ pthread_lib, epoll_shim_dep ],
|
||||
install : true,
|
||||
install_dir : join_paths(spa_plugindir, 'support'))
|
||||
install_dir : spa_plugindir / 'support')
|
||||
|
||||
|
||||
if not get_option('evl').disabled()
|
||||
|
|
@ -29,7 +29,7 @@ if not get_option('evl').disabled()
|
|||
include_directories : [ spa_inc, evl_inc],
|
||||
dependencies : [ pthread_lib, evl_lib],
|
||||
install : true,
|
||||
install_dir : join_paths(spa_plugindir, 'support'))
|
||||
install_dir : spa_plugindir / 'support')
|
||||
endif
|
||||
|
||||
spa_dbus_sources = ['dbus.c']
|
||||
|
|
@ -39,7 +39,7 @@ spa_dbus_lib = shared_library('spa-dbus',
|
|||
include_directories : [ spa_inc],
|
||||
dependencies : [dbus_dep, ],
|
||||
install : true,
|
||||
install_dir : join_paths(spa_plugindir, 'support'))
|
||||
install_dir : spa_plugindir / 'support')
|
||||
|
||||
|
||||
if systemd_dep.found()
|
||||
|
|
@ -50,5 +50,5 @@ if systemd_dep.found()
|
|||
include_directories : spa_inc,
|
||||
dependencies : systemd_dep,
|
||||
install : true,
|
||||
install_dir : join_paths(spa_plugindir, 'support'))
|
||||
install_dir : spa_plugindir / 'support')
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue