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 /data/elementary/config | |
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 'data/elementary/config')
-rw-r--r-- | data/elementary/config/default/meson.build | 7 | ||||
-rw-r--r-- | data/elementary/config/meson.build | 21 | ||||
-rw-r--r-- | data/elementary/config/mobile/meson.build | 7 | ||||
-rw-r--r-- | data/elementary/config/standard/meson.build | 7 |
4 files changed, 42 insertions, 0 deletions
diff --git a/data/elementary/config/default/meson.build b/data/elementary/config/default/meson.build new file mode 100644 index 0000000000..983eb9d8d4 --- /dev/null +++ b/data/elementary/config/default/meson.build | |||
@@ -0,0 +1,7 @@ | |||
1 | custom_target('config_'+config, | ||
2 | input: config_file, | ||
3 | output: 'base.cfg', | ||
4 | command: [eet_bin, '-i', '@OUTPUT@', 'config', '@INPUT@', '0'], | ||
5 | install: true, | ||
6 | install_dir: join_paths(dir_data, 'elementary', 'config', config), | ||
7 | ) | ||
diff --git a/data/elementary/config/meson.build b/data/elementary/config/meson.build new file mode 100644 index 0000000000..12a81ef03f --- /dev/null +++ b/data/elementary/config/meson.build | |||
@@ -0,0 +1,21 @@ | |||
1 | configs = ['default', 'mobile', 'standard'] | ||
2 | |||
3 | foreach config : configs | ||
4 | config_file = join_paths(meson.current_source_dir(), config, 'base.src.in') | ||
5 | config_icon = join_paths(meson.current_source_dir(), config, 'icon.png') | ||
6 | config_desktop = join_paths(meson.current_source_dir(), config, 'profile.desktop') | ||
7 | |||
8 | install_data([config_icon, config_desktop], | ||
9 | install_dir : join_paths(dir_data, 'elementary', 'config', config) | ||
10 | ) | ||
11 | |||
12 | subdir(config) | ||
13 | endforeach | ||
14 | |||
15 | custom_target('config_profile', | ||
16 | input: 'profile.src', | ||
17 | output: 'profile.cfg', | ||
18 | command: [eet_bin, '-i', '@OUTPUT@', 'config', '@INPUT@', '0'], | ||
19 | install: true, | ||
20 | install_dir: join_paths(dir_data, 'elementary', 'config'), | ||
21 | ) | ||
diff --git a/data/elementary/config/mobile/meson.build b/data/elementary/config/mobile/meson.build new file mode 100644 index 0000000000..c3a8a44de9 --- /dev/null +++ b/data/elementary/config/mobile/meson.build | |||
@@ -0,0 +1,7 @@ | |||
1 | custom_target('config_'+config, | ||
2 | input: config_file, | ||
3 | output: 'base.cfg', | ||
4 | command: [eet_bin, '-i', '@OUTPUT@', 'config', '@INPUT@', '0'], | ||
5 | install: true, | ||
6 | install_dir: join_paths(dir_data, 'elementary', 'config', config), | ||
7 | ) | ||
diff --git a/data/elementary/config/standard/meson.build b/data/elementary/config/standard/meson.build new file mode 100644 index 0000000000..c3a8a44de9 --- /dev/null +++ b/data/elementary/config/standard/meson.build | |||
@@ -0,0 +1,7 @@ | |||
1 | custom_target('config_'+config, | ||
2 | input: config_file, | ||
3 | output: 'base.cfg', | ||
4 | command: [eet_bin, '-i', '@OUTPUT@', 'config', '@INPUT@', '0'], | ||
5 | install: true, | ||
6 | install_dir: join_paths(dir_data, 'elementary', 'config', config), | ||
7 | ) | ||