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.
This commit is contained in:
Jaehyun Cho 2019-05-10 19:29:34 +09:00
parent 4e6539725e
commit ecce35c555
1 changed files with 2 additions and 2 deletions

View File

@ -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 = []