summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorWonki Kim <wonki_.kim@samsung.com>2019-01-10 12:01:08 +0000
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-01-10 19:44:01 +0100
commitb73a5ed704283d95edceb551341902df2b8a9b58 (patch)
tree60bd0ca204ee5175770286e8b33f00d530271320 /meson_options.txt
parent3376e7cbd275504dcf8350d5cf360a559a0684a9 (diff)
downloadefl-b73a5ed704283d95edceb551341902df2b8a9b58.tar.gz
meson: add a option to config the base directory name for elm data
There is a option(--with-elementary-base-dir) on autotools this patch provides the exactly same thing that autotools does on meson Differential Revision: https://phab.enlightenment.org/D7580
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index a359154836..913f49bb5d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -340,4 +340,10 @@ option('dictionaries-hyphen-dir',
type : 'string',
value : '/usr/share/hyphen/',
description : 'Put the path to hyphen dictionaries directory'
-) \ No newline at end of file
+)
+
+option('elementary-base-dir',
+ type : 'string',
+ value : '.elementary',
+ description : 'Put the name of a base directory for elementary data'
+)