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.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ic6cbfb0bd9709b0438a6cb871c2ed71dec174ba0
diff --git a/meson.options b/meson.options
index 027c92a..f37d08d 100644
--- a/meson.options
+++ b/meson.options
@@ -1,5 +1,5 @@
option('tests', type: 'feature', description: 'Build tests')
-option('oe-sdk', type: 'feature', description: 'Enable OE SDK')
+option('oe-sdk', type: 'feature', value: 'disabled', description: 'Enable OE SDK')
option('examples', type: 'boolean', value: true, description: 'Build vendor-example')
option('MANIFEST_FILE',