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/eet/meson.build | |
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/eet/meson.build')
-rw-r--r-- | src/lib/eet/meson.build | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/lib/eet/meson.build b/src/lib/eet/meson.build new file mode 100644 index 0000000000..8ebdb48dd6 --- /dev/null +++ b/src/lib/eet/meson.build | |||
@@ -0,0 +1,38 @@ | |||
1 | eet_deps = [crypto, jpeg, rg_etc, m] | ||
2 | eet_pub_deps = [eina, emile, efl] | ||
3 | |||
4 | eet_header_src = [ | ||
5 | 'Eet.h' | ||
6 | ] | ||
7 | |||
8 | eet_src = [ | ||
9 | 'Eet_private.h', | ||
10 | 'eet_alloc.c', | ||
11 | 'eet_cipher.c', | ||
12 | 'eet_connection.c', | ||
13 | 'eet_data.c', | ||
14 | 'eet_dictionary.c', | ||
15 | 'eet_image.c', | ||
16 | 'eet_lib.c', | ||
17 | 'eet_node.c', | ||
18 | 'eet_utils.c', | ||
19 | ] | ||
20 | |||
21 | eet_lib = library('eet', | ||
22 | eet_src, pub_eo_file_target, | ||
23 | dependencies: eet_deps + eet_pub_deps, | ||
24 | include_directories : config_dir, | ||
25 | install: true, | ||
26 | version : meson.project_version() | ||
27 | ) | ||
28 | |||
29 | eet = declare_dependency( | ||
30 | include_directories: [include_directories('.')], | ||
31 | link_with: eet_lib, | ||
32 | sources : pub_eo_file_target + priv_eo_file_target, | ||
33 | dependencies: eet_pub_deps, | ||
34 | ) | ||
35 | |||
36 | install_headers(eet_header_src, | ||
37 | install_dir : dir_package_include, | ||
38 | ) | ||