meson: use join_paths()

This commit is contained in:
Daniel Eklöf 2019-05-03 23:09:38 +02:00
parent 64171b412a
commit 789cdd949b
3 changed files with 4 additions and 4 deletions

View file

@ -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),