meson: binary building support

Since meson support is being introduced in parallel with the existing
automake build system, introduce its support in steps. This first step
focuses on being able to build the binaries within
phosphor-state-manager. Future commits will add support for the test
directory and service files.

The .clang-tidy is needed to workaround the following issue with the
default scan-build:
https://github.com/mesonbuild/meson/issues/6323

Tested:
Verified all binaries build within meson framework

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I48df9190a7c9ee47630d28f3241cb878169248de
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..0de6b75
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,73 @@
+option('tests', type: 'feature', description: 'Build tests')
+
+option(
+    'host-busname', type: 'string',
+    value: 'xyz.openbmc_project.State.Host',
+    description: 'The Host DBus busname to own.',
+)
+
+option(
+    'host-objpath', type: 'string',
+    value: '/xyz/openbmc_project/state/host',
+    description: 'The host state manager Dbus root.',
+)
+
+option(
+    'chassis-busname', type: 'string',
+    value: 'xyz.openbmc_project.State.Chassis',
+    description: 'The Chassis DBus busname to own.',
+)
+
+option(
+    'chassis-objpath', type: 'string',
+    value: '/xyz/openbmc_project/state/chassis',
+    description: 'The chassis state manager Dbus root.',
+)
+
+option(
+    'bmc-busname', type: 'string',
+    value: 'xyz.openbmc_project.State.BMC',
+    description: 'The BMC DBus busname to own.',
+)
+
+option(
+    'bmc-objpath', type: 'string',
+    value: '/xyz/openbmc_project/state/bmc',
+    description: 'The bmc state manager Dbus root.',
+)
+
+option(
+    'host-running-file', type: 'string',
+    value: '/run/openbmc/host@%d-on',
+    description: 'File to create if host is running.',
+)
+
+option(
+    'host-state-persist-path', type: 'string',
+    value: '/var/lib/phosphor-state-manager/requestedHostTransition',
+    description: 'Path of file for storing requested host state.',
+)
+
+option(
+    'poh-counter-persist-path', type: 'string',
+    value: '/var/lib/phosphor-state-manager/POHCounter',
+    description: 'Path of file for storing POH counter.',
+)
+
+option(
+    'chassis-state-change-persist-path', type: 'string',
+    value: '/var/lib/phosphor-state-manager/chassisStateChangeTime',
+    description: 'Path of file for storing the state change time.',
+)
+
+option(
+    'boot-count-max-allowed', type: 'integer',
+    value: 3,
+    description: 'The maximum allowed reboot count.',
+)
+
+option(
+    'class-version', type: 'integer',
+    value: 1,
+    description: 'Class version to register with Cereal.',
+)