From ecce35c555be583c1a6447cca4a310eb1c1a9871 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Fri, 10 May 2019 19:29:34 +0900 Subject: [PATCH] efl_mono: move libeflcustomexportsmono.so to lib with versions by meson meson generates libeflcustomexportsmono.so to lib/efl-mono-1/ directory unlike other so files. Moreover, the so file does not have versions in the file name unlike other so files. Like other so files, libeflcustomexportsmono.so is moved to lib directory with versions in the file name. --- src/bindings/mono/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/mono/meson.build b/src/bindings/mono/meson.build index e7c5e00d9a..c17956736f 100644 --- a/src/bindings/mono/meson.build +++ b/src/bindings/mono/meson.build @@ -94,8 +94,8 @@ blacklisted_files = [ efl_mono_lib = library('eflcustomexportsmono', join_paths('..', '..', 'lib', 'efl_mono', 'efl_custom_exports_mono.c'), install : true, - install_dir : join_paths(dir_lib, 'efl-mono-'+version_major), - dependencies : [eo, eina, ecore] + dependencies : [eo, eina, ecore], + version : meson.project_version() ) beta_option = []