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/scripts | |
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/scripts')
-rw-r--r-- | src/scripts/elua/meson.build | 11 | ||||
-rw-r--r-- | src/scripts/eo/meson.build | 11 | ||||
-rw-r--r-- | src/scripts/meson.build | 2 |
3 files changed, 24 insertions, 0 deletions
diff --git a/src/scripts/elua/meson.build b/src/scripts/elua/meson.build new file mode 100644 index 0000000000..41d413a138 --- /dev/null +++ b/src/scripts/elua/meson.build | |||
@@ -0,0 +1,11 @@ | |||
1 | install_subdir('modules', | ||
2 | install_dir : join_paths(dir_data, 'elua') | ||
3 | ) | ||
4 | |||
5 | install_subdir('core', | ||
6 | install_dir : join_paths(dir_data, 'elua') | ||
7 | ) | ||
8 | |||
9 | install_subdir('apps', | ||
10 | install_dir : join_paths(dir_data, 'elua') | ||
11 | ) | ||
diff --git a/src/scripts/eo/meson.build b/src/scripts/eo/meson.build new file mode 100644 index 0000000000..bdb2803541 --- /dev/null +++ b/src/scripts/eo/meson.build | |||
@@ -0,0 +1,11 @@ | |||
1 | eo_debug_config = configuration_data() | ||
2 | |||
3 | eo_debug_config.set('prefix', dir_prefix) | ||
4 | eo_debug_config.set('exec_prefix', '${prefix}') | ||
5 | eo_debug_config.set('libdir', dir_lib) | ||
6 | |||
7 | configure_file( | ||
8 | input: 'eo_debug.in', | ||
9 | output: 'eo_debug', | ||
10 | configuration: eo_debug_config, | ||
11 | install_dir: dir_bin) | ||
diff --git a/src/scripts/meson.build b/src/scripts/meson.build new file mode 100644 index 0000000000..6057ad788a --- /dev/null +++ b/src/scripts/meson.build | |||
@@ -0,0 +1,2 @@ | |||
1 | subdir('eo') | ||
2 | subdir('elua') | ||