dump-collect: Add application for SBE dump collection

This series of commits introduces the `dump-collect` application, a new
command-line tool designed to facilitate the collection of dumps from
the SBE. The tool is capable of asynchronous operation, allowing it
to initiate dump collection from different SBEs at the same time.

Key Highlights:
- The base implementation sets up the application to accept necessary
   parameters for dump collection, including dump type, dump ID,
   destination path for collected data, and the ID of the failing unit.
- An implementation of the dump collection class and the initiation
  method enables the start of the dump collection process
  asynchronously.
- The `dump-collect` application is designed to be invoked from scripts,
  which collect various data in the case of system failures.

Tests:
  Validated parameters passed
  Starting dump collection method

Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
Change-Id: If6f44075d33af20e09a442d7968d235dc6e8ea16
diff --git a/dump/meson.build b/dump/meson.build
new file mode 100644
index 0000000..45140d0
--- /dev/null
+++ b/dump/meson.build
@@ -0,0 +1,26 @@
+# SPDX-License-Identifier: Apache-2.0
+
+cxx = meson.get_compiler('cpp')
+
+collect_deps = [
+   CLI11_dep,
+   phosphorlogging,
+   cxx.find_library('pdbg'),
+   cxx.find_library('libdt-api'),
+   cxx.find_library('phal'),
+]
+
+# source files
+
+collect_src = files(
+    'sbe_dump_collector.cpp',
+    'dump_collect_main.cpp',
+    'dump_utils.cpp',
+)
+
+executable('dump-collect',
+    collect_src,
+    dependencies: collect_deps,
+    implicit_include_directories: true,
+    install: true
+)