Port to meson

OpenBMC is moving everything to meson, so do that here, too.

Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Change-Id: Id40b891c4273894aa02a87c1105277939d90e044
diff --git a/meson.options b/meson.options
new file mode 100644
index 0000000..ed29e7b
--- /dev/null
+++ b/meson.options
@@ -0,0 +1,13 @@
+option(
+    'libpeci',
+    type: 'feature',
+    value: 'disabled',
+    description: 'Enable use of old peci driver API via libpeci',
+)
+
+option(
+    'crashdump',
+    type: 'feature',
+    value: 'disabled',
+    description: 'Enable use of the Intel Crashdump service',
+)