Compile switch to output all properties

With validation bits removed, debug scenarios might require all
fields to be printed regardless of their validity.
Disable unit tests in this case as round trip will fail.

Add meson switch to bb file to enable all properties:
EXTRA_OEMESON += "-Doutput_all_properties=enabled"

Tested with locally generated examples and diffing results.

Change-Id: Ic232c295197e2152735fcf0f33041d6f972512bc
Signed-off-by: Aushim Nagarkatti <anagarkatti@nvidia.com>
diff --git a/meson.options b/meson.options
index b34d541..f22076c 100644
--- a/meson.options
+++ b/meson.options
@@ -1,2 +1,8 @@
 option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
 option('utility', type: 'feature', value: 'enabled', description: 'Utility')
+option(
+    'output-all-properties',
+    type: 'feature',
+    value: 'disabled',
+    description: 'Force enabling of all CPER to IR properties for debugging',
+)