xartigas pushed a commit to branch master. http://git.enlightenment.org/tools/examples.git/commit/?id=a49641d9b45ff9ad71e72018af38ba98856f96ae
commit a49641d9b45ff9ad71e72018af38ba98856f96ae Author: Xavi Artigas <xavierarti...@yahoo.es> Date: Fri Jun 14 12:46:50 2019 +0200 efl-mono: Make the setup.py script work again It was broken when the snippets folder was added without a meson.build file. --- reference/csharp/snippets/meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/reference/csharp/snippets/meson.build b/reference/csharp/snippets/meson.build new file mode 100644 index 00000000..7db6de34 --- /dev/null +++ b/reference/csharp/snippets/meson.build @@ -0,0 +1,9 @@ +project( + 'snippets', 'cs', + version : '0.0.1', + meson_version : '>= 0.38.0') + +efl_mono = dependency('efl-mono', version : '>=1.20.99') +efl_mono_libs = efl_mono.get_pkgconfig_variable('mono_libs') + + --