From 46d464e5bfc10398461a33a2256c1c58d509dd1a Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sun, 12 Aug 2018 15:26:29 +0200 Subject: here comes meson a new shiny buildtool that currently completes in the total of ~ 4 min.. 1 min. conf time 2:30 min. build time Where autotools takes: 1:50 min. conf time 3:40 min. build time. meson was taken because it went quite good for enlightenment, and is a traction gaining system that is also used by other mayor projects. Additionally, the DSL that is defined my meson makes the configuration of the builds a lot easier to read. Further informations can be gathered from the README.meson Right now, bindings & windows support are missing. It is highly recommented to use meson 0.48 due to optimizations in meson that reduced the time the meson call would need. Co-authored-by: Mike Blumenkrantz Differential Revision: https://phab.enlightenment.org/D7012 Depends on D7011 --- src/lib/ector/software/meson.build | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/lib/ector/software/meson.build (limited to 'src/lib/ector/software/meson.build') diff --git a/src/lib/ector/software/meson.build b/src/lib/ector/software/meson.build new file mode 100644 index 0000000000..ceb08ef3f2 --- /dev/null +++ b/src/lib/ector/software/meson.build @@ -0,0 +1,36 @@ + +ector_src += files([ + 'ector_renderer_software_gradient_linear.c', + 'ector_renderer_software_gradient_radial.c', + 'ector_renderer_software_shape.c', + 'ector_software_gradient.c', + 'ector_software_rasterizer.c', + 'ector_software_surface.c', + 'ector_software_buffer.c', +]) + +pub_eo_files = [ + 'ector_software_surface.eo', + 'ector_software_buffer.eo', + 'ector_software_buffer_base.eo', + 'ector_renderer_software.eo', + 'ector_renderer_software_shape.eo', + 'ector_renderer_software_gradient_radial.eo', + 'ector_renderer_software_gradient_linear.eo', +] + +foreach eo_file : pub_eo_files + pub_eo_file_target += custom_target('eolian_gen_' + eo_file, + input : eo_file, + output : [eo_file + '.h'], + install : false, + install_dir : dir_package_include, + command : [eolian_gen, '-I', meson.current_source_dir(), eolian_include_directories, + '-o', 'h:' + join_paths(meson.current_build_dir(), eo_file + '.h'), + '-o', 'c:' + join_paths(meson.current_build_dir(), eo_file + '.c'), + '-gch', '@INPUT@']) +endforeach + +install_data(pub_eo_files, + install_dir: join_paths(eolian_include_dir, package_version_name) +) -- cgit v1.2.1