Add interface for progress tracking.

Implement this interface to track the progress of an activity.

Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
Change-Id: Ia40b4b0052d4c71742d226ff8be6c1c3029c727e
diff --git a/gen/xyz/openbmc_project/Common/meson.build b/gen/xyz/openbmc_project/Common/meson.build
index 607a065..f35e3ad 100644
--- a/gen/xyz/openbmc_project/Common/meson.build
+++ b/gen/xyz/openbmc_project/Common/meson.build
@@ -102,6 +102,21 @@
     build_by_default: true,
 )
 
+subdir('Progress')
+generated_others += custom_target(
+    'xyz/openbmc_project/Common/Progress__markdown'.underscorify(),
+    input: [ meson.source_root() / 'xyz/openbmc_project/Common/Progress.interface.yaml',  ],
+    output: [ 'Progress.md' ],
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.source_root(),
+        'xyz/openbmc_project/Common/Progress',
+    ],
+    build_by_default: true,
+)
+
 subdir('TFTP')
 generated_others += custom_target(
     'xyz/openbmc_project/Common/TFTP__markdown'.underscorify(),