Move repository to meson
The time has come to move this over to meson as automake is not building
properly with the latest c++ and the OpenBMC project has made it a
requirement that all repos move to meson.
Tested:
- Confirmed p10bmc now builds with appropriate recipe updates on top
of latest sdbusplus bump
Change-Id: I303731f1b5b7c617ecb1140b22bac6dbd27acbc0
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/meson.options b/meson.options
new file mode 100644
index 0000000..0284ed1
--- /dev/null
+++ b/meson.options
@@ -0,0 +1,15 @@
+option('tests', type: 'feature', description: 'Build tests')
+
+option(
+ 'host-name',
+ type: 'string',
+ value: 'host',
+ description: 'The Host name in the object path.',
+)
+
+# Generate configuration from Yaml
+option(
+ 'invsensor-yaml-gen',
+ type: 'string',
+ value: 'inventory-sensor-example.yaml',
+)