meson: disable oe-sdk by default
The meson option oe-sdk is used in rare scenarios. Having it
non-defaulted turns it into an `auto` feature, which is not desired.
Explicitly disable it by default.
Change-Id: Ib278aa93822e471c63b9f3c5a2e42eaffa441a6a
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.options b/meson.options
index bebdff4..41c5d6e 100644
--- a/meson.options
+++ b/meson.options
@@ -1,4 +1,4 @@
-option('oe-sdk', type: 'feature', description: 'ENABLE OE SDK FOR OPENPOWER VPD PARSER')
+option('oe-sdk', type: 'feature', value : 'disabled', description: 'ENABLE OE SDK FOR OPENPOWER VPD PARSER')
option('tests', type: 'feature', value : 'enabled', description: 'Build tests')
option('FRU_YAML',type: 'string', value: 'writefru.yaml', description: 'YAML STRING')
option('PROP_YAML',type: 'string', value: 'extra-properties-example.yaml', description: 'YAML PROPERTY')