summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-10-19 16:18:39 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-10-24 12:05:58 +0200
commite85311c99286988f98ce081148f6f9e298086c2d (patch)
tree9479f9b7c887904044b08fd2fb217f8b41971837 /meson_options.txt
parente19d2391476965d7b8e8865a766734947cc3099f (diff)
downloadefl-e85311c99286988f98ce081148f6f9e298086c2d.tar.gz
meson: here comes cxx bindings
this commits is bringing cxx bindings. You can enable / disable them with the cxx option. Differential Revision: https://phab.enlightenment.org/D7181
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 4460c703aa..5ad5d6c8a6 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -309,3 +309,15 @@ option('nls',
value: true,
description: 'enable localization: (default=true)'
)
+
+option('luajit',
+ type: 'boolean',
+ value: true,
+ description: 'Flag for handling lua bindings'
+)
+
+option('cxx',
+ type: 'boolean',
+ value: true,
+ description: 'Flag for handling cxx bindings'
+)