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 /po | |
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 'po')
-rw-r--r-- | po/meson.build | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/po/meson.build b/po/meson.build new file mode 100644 index 0000000000..68a4885e41 --- /dev/null +++ b/po/meson.build | |||
@@ -0,0 +1,22 @@ | |||
1 | if get_option('nls') | ||
2 | i18n = import('i18n') | ||
3 | i18n.gettext('efl', | ||
4 | args: [ | ||
5 | '--keyword=_', | ||
6 | '--keyword=d_:1', | ||
7 | '--keyword=P_:1,2', | ||
8 | '--keyword=dP_:1,2', | ||
9 | '--keyword=N_', | ||
10 | '--keyword=NP_:1,2', | ||
11 | '--from-code=UTF-8', | ||
12 | '--foreign-user' | ||
13 | ]) | ||
14 | config_h.set('HAVE_GETTEXT', '1') | ||
15 | config_h.set('ENABLE_NLS', '1') | ||
16 | intl = cc.find_library('intl', required : false) | ||
17 | if cc.has_header('libintl.h', dependencies : intl) == false | ||
18 | error('libintl.h not found') | ||
19 | endif | ||
20 | else | ||
21 | intl = declare_dependency() | ||
22 | endif | ||