build: add sdbus++-gen-meson generated files

Use the tool to generate the meson.build files for the current
tree of interfaces, but do not utilize them yet.  Add a
small helper tool to regenerate as needed.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ie1f68984e5b01dcab661863d2ac719d0e3cd45c1
diff --git a/gen/xyz/openbmc_project/Inventory/meson.build b/gen/xyz/openbmc_project/Inventory/meson.build
new file mode 100644
index 0000000..1087000
--- /dev/null
+++ b/gen/xyz/openbmc_project/Inventory/meson.build
@@ -0,0 +1,46 @@
+# Generated file; do not modify.
+generated_sources += custom_target(
+    'xyz/openbmc_project/Inventory__cpp'.underscorify(),
+    input: [ meson.source_root() / 'xyz/openbmc_project/Inventory.errors.yaml',  ],
+    output: [ 'error.cpp', 'error.hpp',  ],
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'cpp',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.source_root(),
+        'xyz/openbmc_project/Inventory',
+    ],
+)
+
+subdir('Decorator')
+subdir('Item')
+generated_others += custom_target(
+    'xyz/openbmc_project/Inventory/Item__markdown'.underscorify(),
+    input: [ meson.source_root() / 'xyz/openbmc_project/Inventory/Item.interface.yaml',  ],
+    output: [ 'Item.md' ],
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.source_root(),
+        'xyz/openbmc_project/Inventory/Item',
+    ],
+    build_by_default: true,
+)
+
+subdir('Manager')
+generated_others += custom_target(
+    'xyz/openbmc_project/Inventory/Manager__markdown'.underscorify(),
+    input: [ meson.source_root() / 'xyz/openbmc_project/Inventory/Manager.interface.yaml',  ],
+    output: [ 'Manager.md' ],
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.source_root(),
+        'xyz/openbmc_project/Inventory/Manager',
+    ],
+    build_by_default: true,
+)
+
+subdir('Source')