Build Chip Data binary files from XML

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Ifee9e2f5ec1fc639ceb4bc2bd5b53d8b3c4177d8
diff --git a/meson.build b/meson.build
index 9453bbc..b429dd8 100644
--- a/meson.build
+++ b/meson.build
@@ -1,3 +1,4 @@
+# OpenBMC openpower-libhei project, see README.md for details.
 project('openpower-libhei', 'cpp',
         version: '0.1', meson_version: '>=0.50.0',
         default_options: [
@@ -7,6 +8,10 @@
             'cpp_args=-Wno-unused-parameter'
        ])
 
+#-------------------------------------------------------------------------------
+# libhei library
+#-------------------------------------------------------------------------------
+
 incdir = include_directories('src')
 
 libhei_src = [
@@ -46,8 +51,19 @@
                  filebase : 'hei',
                  description : 'Openpower Hardware Error Isolator')
 
+#-------------------------------------------------------------------------------
+# Chip Data Files
+#-------------------------------------------------------------------------------
+
+subdir('xml')
+
+#-------------------------------------------------------------------------------
+# Test
+#-------------------------------------------------------------------------------
+
 build_tests = get_option('tests')
 
 if not build_tests.disabled()
   subdir('test')
 endif
+