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/elocation/gen/meson.build | 5 +++++ src/lib/elocation/meson.build | 28 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/lib/elocation/gen/meson.build create mode 100644 src/lib/elocation/meson.build (limited to 'src/lib/elocation') diff --git a/src/lib/elocation/gen/meson.build b/src/lib/elocation/gen/meson.build new file mode 100644 index 0000000000..58de776fa5 --- /dev/null +++ b/src/lib/elocation/gen/meson.build @@ -0,0 +1,5 @@ + +elocation_src += files([ + 'eldbus_geo_clue2_client.c', + 'eldbus_geo_clue2_location.c', + 'eldbus_geo_clue2_manager.c']) diff --git a/src/lib/elocation/meson.build b/src/lib/elocation/meson.build new file mode 100644 index 0000000000..080ea57278 --- /dev/null +++ b/src/lib/elocation/meson.build @@ -0,0 +1,28 @@ +elocation_deps = [eina, eo, efl, ecore, eldbus] +elocation_pub_deps = [ecore, eldbus] + +elocation_src = files(['elocation.c']) + +subdir('gen') + +elocation_header_src = ['Elocation.h'] + + +elocation_lib = library('elocation', + elocation_src, + dependencies: [m] + elocation_deps + elocation_pub_deps, + include_directories : config_dir + [include_directories(join_paths('..','..'))], + install: true, + c_args : package_c_args, + version : meson.project_version() +) + +elocation = declare_dependency( + include_directories: [include_directories('.')], + link_with: elocation_lib, + dependencies: elocation_pub_deps, +) + +install_headers(elocation_header_src, + install_dir : dir_package_include, +) -- cgit v1.2.1