diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-08-12 15:26:29 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-10-02 17:22:50 +0200 |
commit | 46d464e5bfc10398461a33a2256c1c58d509dd1a (patch) | |
tree | 8c1a9272c05f14033a4430bc122632461bd73608 /src/lib/ecore_evas | |
parent | 70ecf1056bb4be5a68b63044f938ccc2fe0a58c0 (diff) |
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 <zmike@samsung.com>
Differential Revision: https://phab.enlightenment.org/D7012
Depends on D7011
Diffstat (limited to 'src/lib/ecore_evas')
-rw-r--r-- | src/lib/ecore_evas/meson.build | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/lib/ecore_evas/meson.build b/src/lib/ecore_evas/meson.build new file mode 100644 index 0000000000..c0fb459a56 --- /dev/null +++ b/src/lib/ecore_evas/meson.build | |||
@@ -0,0 +1,47 @@ | |||
1 | ecore_evas_deps = [eina, ecore_input_evas, ecore_input, ecore, eet, evas, efl, eo, eina, emile] | ||
2 | ecore_evas_pub_deps = [evas, ecore] | ||
3 | pub_eo_file_target = [] | ||
4 | |||
5 | ecore_evas_header_src = [ | ||
6 | 'Ecore_Evas_Types.h', | ||
7 | 'Ecore_Evas.h', | ||
8 | |||
9 | ] | ||
10 | |||
11 | ecore_evas_src = [ | ||
12 | 'ecore_evas.c', | ||
13 | 'ecore_evas_buffer.c', | ||
14 | 'ecore_evas_buffer.h', | ||
15 | 'ecore_evas_deprecated.c', | ||
16 | 'ecore_evas_drm.h', | ||
17 | 'ecore_evas_ews.c', | ||
18 | 'ecore_evas_module.c', | ||
19 | 'ecore_evas_private.h', | ||
20 | 'ecore_evas_extn.h', | ||
21 | 'ecore_evas_extn.c', | ||
22 | 'ecore_evas_wayland.h', | ||
23 | 'ecore_evas_cocoa.h', | ||
24 | 'ecore_evas_win32.h', | ||
25 | 'ecore_evas_x11.h', | ||
26 | 'ecore_evas_util.c' | ||
27 | ] | ||
28 | |||
29 | |||
30 | ecore_evas_lib = library('ecore_evas', | ||
31 | ecore_evas_src, pub_eo_file_target, | ||
32 | dependencies: [ecore_evas_deps, buildsystem], | ||
33 | include_directories : config_dir, | ||
34 | install: true, | ||
35 | version : meson.project_version() | ||
36 | ) | ||
37 | |||
38 | ecore_evas = declare_dependency( | ||
39 | include_directories: [include_directories('.')], | ||
40 | link_with: ecore_evas_lib, | ||
41 | sources : pub_eo_file_target + priv_eo_file_target, | ||
42 | dependencies: [evas], | ||
43 | ) | ||
44 | |||
45 | install_headers(ecore_evas_header_src, | ||
46 | install_dir : dir_package_include, | ||
47 | ) | ||