cooling-type: Default the feature to enabled

Change the meson option to build the cooling-type code by default so
that it will be in compile_commands.json so clang-tidy can properly
handle it.

In the bitbake recipe, there is already a packageconfig for it that is
disabled by default, so this won't change how it builds in flash
images.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I7d654df51c3cf6a74fad4f46d581c12ca78220c1
diff --git a/meson.options b/meson.options
index 45e52ec..c9ed010 100644
--- a/meson.options
+++ b/meson.options
@@ -168,7 +168,7 @@
 option(
     'cooling-type-service',
     type: 'feature',
-    value: 'disabled',
+    value: 'enabled',
     description: 'Build cooling-type package.',
 )