mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 20:35:42 +02:00
meson: use join_paths()
This commit is contained in:
parent
64171b412a
commit
789cdd949b
3 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ foreach deco : ['background', 'stack', 'underline']
|
|||
dependencies: deco_sdk,
|
||||
name_prefix: 'decoration_',
|
||||
install: true,
|
||||
install_dir: get_option('libdir') + '/f00bar')
|
||||
install_dir: join_paths(get_option('libdir'), 'f00bar'))
|
||||
else
|
||||
lib = static_library(
|
||||
'decoration_@0@'.format(deco), '@0@.c'.format(deco), dependencies: deco_sdk)
|
||||
|
|
|
@ -37,7 +37,7 @@ foreach mod, data : deps
|
|||
dependencies: [module_sdk] + dep,
|
||||
name_prefix: 'module_',
|
||||
install: true,
|
||||
install_dir: get_option('libdir') + '/f00bar')
|
||||
install_dir: join_paths(get_option('libdir'), 'f00bar'))
|
||||
else
|
||||
modules += [declare_dependency(
|
||||
sources: ['@0@.c'.format(mod)] + sources,
|
||||
|
@ -56,7 +56,7 @@ if enable_x11
|
|||
dependencies: [module_sdk] + dep,
|
||||
name_prefix: 'module_',
|
||||
install: true,
|
||||
install_dir: get_option('libdir') + '/f00bar')
|
||||
install_dir: join_paths(get_option('libdir'), 'f00bar'))
|
||||
else
|
||||
modules += [declare_dependency(
|
||||
sources: ['@0@.c'.format(mod)] + sources,
|
||||
|
|
|
@ -7,7 +7,7 @@ foreach particle : ['empty', 'list', 'map', 'progress-bar', 'ramp', 'string']
|
|||
dependencies: particle_sdk,
|
||||
name_prefix: 'particle_',
|
||||
install: true,
|
||||
install_dir: get_option('libdir') + '/f00bar')
|
||||
install_dir: join_paths(get_option('libdir'), 'f00bar'))
|
||||
else
|
||||
lib = static_library(
|
||||
'particle_@0@'.format(particle), '@0@.c'.format(particle),
|
||||
|
|
Loading…
Add table
Reference in a new issue