meson: modify install path of bqmgr binary

bqmgr is installed under ${libdir}/ecore_buffer/bin/ on autotools.
and it's not on meson.

this patch modify the install path on meson to a place that autotools installs outputs under
and this contains file name of binary also

Reviewed-by: Marcel Hollerbach <marcel-hollerbach@t-online.de>
Differential Revision: https://phab.enlightenment.org/D7836
This commit is contained in:
Wonki Kim 2019-01-31 06:04:23 +00:00 committed by Marcel Hollerbach
parent b37c72a95a
commit 7bda677eb0
1 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,6 @@
executable('bq_mgr',
['bq_mgr_protocol.c', 'bq_mgr.c'],
dependencies: [ecore, ecore_buffer, ecore_buffer_deps],
install : true
executable('bqmgr',
['bq_mgr_protocol.c', 'bq_mgr.c'],
dependencies: [ecore, ecore_buffer, ecore_buffer_deps],
install: true,
install_dir: join_paths(dir_lib, 'ecore_buffer', 'bin')
)