From: Wonki Kim Date: Thu, 31 Jan 2019 06:19:02 +0000 (+0900) Subject: meson: modify install path of bqmgr binary X-Git-Tag: submit/tizen/20190206.232055~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cde26585f3487f01563091b85c7126d04c5c8f74;p=platform%2Fupstream%2Fefl.git meson: modify install path of bqmgr binary Summary: 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 Reviewers: bu5hm4n, #reviewers Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7836 Change-Id: I1a514c9ab97ede25b78c2dcd8a205a93df02cb9a --- diff --git a/src/bin/ecore_buffer/meson.build b/src/bin/ecore_buffer/meson.build index 86ee20a..5e1a9d9 100644 --- a/src/bin/ecore_buffer/meson.build +++ b/src/bin/ecore_buffer/meson.build @@ -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') )