efl-mono: Add efl_mono.dll.config file to run tests from within tree

Required by some distros like Arch.

Reviewed-by: Marcel Hollerbach <marcel-hollerbach@t-online.de>
Reviewed-by: Felipe Magno de Almeida <felipe@expertisesolutions.com.br>
Differential Revision: https://phab.enlightenment.org/D7527
This commit is contained in:
Felipe Magno de Almeida 2019-01-03 21:06:53 +00:00 committed by Marcel Hollerbach
parent 859afc8f54
commit a8e23cc400
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<configuration>
<dllmap dll=\"eina\" target=\"@EINA@\"/>
<dllmap dll=\"efl\" target=\"@EFL@\"/>
<dllmap dll=\"ecore\" target=\"@ECORE@\"/>
<dllmap dll=\"eo\" target=\"@EO@\"/>
<dllmap dll=\"evas\" target=\"@EVAS@\"/>
<dllmap dll=\"eldbus\" target=\"@ELDBUS@\"/>
<dllmap dll=\"elementary\" target=\"@ELEMENTARY@\"/>
</configuration>

View File

@ -113,6 +113,19 @@ foreach mono_gen_file : legacy_evas_required_by_mono
'@INPUT@'])
endforeach
efl_mono_conf_data = configuration_data()
efl_mono_conf_data.set('EINA', eina_lib.full_path())
efl_mono_conf_data.set('EFL', efl_lib.full_path())
efl_mono_conf_data.set('ECORE', ecore_lib.full_path())
efl_mono_conf_data.set('EO', eo_lib.full_path())
efl_mono_conf_data.set('EVAS', evas_lib.full_path())
efl_mono_conf_data.set('ELDBUS', eldbus_lib.full_path())
efl_mono_conf_data.set('ELEMENTARY', elementary_lib.full_path())
configure_file(input : 'efl_mono.dll.config.in',
output : 'efl_mono.dll.config',
configuration : efl_mono_conf_data)
efl_mono = library('efl_mono',
mono_generator_target + mono_files + [efl_src],
install : true,