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_file/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 '')
-rw-r--r-- | src/lib/ecore_file/meson.build | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/lib/ecore_file/meson.build b/src/lib/ecore_file/meson.build new file mode 100644 index 0000000000..a3e70f8a99 --- /dev/null +++ b/src/lib/ecore_file/meson.build | |||
@@ -0,0 +1,39 @@ | |||
1 | ecore_file_deps = [ecore_con, ecore] | ||
2 | ecore_file_pub_deps = [eina] | ||
3 | |||
4 | ecore_file_src = [ | ||
5 | 'ecore_file.c', | ||
6 | 'ecore_file_download.c', | ||
7 | 'ecore_file_monitor.c', | ||
8 | 'ecore_file_path.c', | ||
9 | 'ecore_file_private.h' | ||
10 | ] | ||
11 | |||
12 | if target_machine.system() == 'windows' | ||
13 | ecore_file_src += [ 'ecore_file_monitor_win32.c'] | ||
14 | elif cc.has_header('sys/inotify.h') | ||
15 | ecore_file_src += [ 'ecore_file_monitor_inotify.c'] | ||
16 | else | ||
17 | ecore_file_src += [ 'ecore_file_monitor_poll.c'] | ||
18 | endif | ||
19 | |||
20 | ecore_file_header_src = ['Ecore_File.h'] | ||
21 | |||
22 | |||
23 | ecore_file_lib = library('ecore_file', | ||
24 | ecore_file_src, | ||
25 | dependencies: ecore_file_deps + ecore_file_pub_deps + ecore_file_deps, | ||
26 | include_directories : config_dir + [include_directories(join_paths('..','..'))], | ||
27 | install: true, | ||
28 | version : meson.project_version() | ||
29 | ) | ||
30 | |||
31 | ecore_file = declare_dependency( | ||
32 | include_directories: [include_directories('.')], | ||
33 | link_with: ecore_file_lib, | ||
34 | dependencies: ecore_file_pub_deps, | ||
35 | ) | ||
36 | |||
37 | install_headers(ecore_file_header_src, | ||
38 | install_dir : dir_package_include, | ||
39 | ) | ||