summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Heidelberg <david@ixit.cz>2017-07-16 23:52:54 +0200
committerDavid Heidelberg <david@ixit.cz>2017-07-18 21:25:12 +0200
commitc45d376cf4b28a5967067f58750159f74bfadda9 (patch)
tree5e836267953dd44a4648a50dc593da56dc7f0550 /meson_options.txt
parent89bb617847f1942aa4b34f527ef87421b99f1d5b (diff)
downloadiputils-c45d376cf4b28a5967067f58750159f74bfadda9.tar.gz
meson: add experimental meson buildsystem supportmeson
Usage: meson builddir/ cd builddir ninja Signed-off-by: David Heidelberg <david@ixit.cz>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..daee6b6
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,15 @@
+option('USE_CAP', type : 'boolean', value : true,
+ description : 'Capatiblity support (with libcap)')
+option('USE_IDN', type : 'combo', choices : ['0', '1', '2'], value : '1',
+ description : 'IDN support')
+option('USE_CRYPTO', type : 'combo', choices : ['none', 'nettle', 'gcrypt','openssl'], value : 'nettle',
+ description: 'Crypto library support for ping 6. You can choose between none, Nettle, GCrypt or openssl/libressl')
+
+#option('ARPING_DEFAULT_DEVICE', type : 'string', value : '',
+# description : 'default device for arping')
+
+#option('someoption', type : 'string', value : 'optval', description : 'An option')
+#option('other_one', type : 'boolean', value : false)
+#option('combo_opt', type : 'combo', choices : ['one', 'two', 'three'], value : 'three')
+
+