Fix required properties in schemas

With invalid properties not showing up in the output, they are not
required in the schema anymore.

Note: UTs test with all properties enabled in the cper-generator.

Tested by running example cpers against schemas

Change-Id: I54dcda2ae00587e4a7d59e0365eb41ac1669ba46
Signed-off-by: Aushim Nagarkatti <anagarkatti@nvidia.com>
diff --git a/meson.build b/meson.build
index 9026168..fa054c5 100644
--- a/meson.build
+++ b/meson.build
@@ -18,11 +18,8 @@
     language: ['c', 'cpp'],
 )
 
-add_project_arguments(
-    '-DLIBCPER_EXAMPLES="'
-    + meson.current_source_dir() + '/examples"',
-    language: ['c', 'cpp'],
-)
+add_project_arguments('-DLIBCPER_EXAMPLES="'
+    + meson.current_source_dir() + '/examples"', language: ['c', 'cpp'])
 
 library_is_share = get_option('default_library') == 'shared'
 add_project_arguments('-D_POSIX_C_SOURCE=200809L', language: 'c')