meson: Use proper type for bools
authorilliliti <illiliti@protonmail.com>
Sun, 3 Apr 2022 11:55:33 +0000 (14:55 +0300)
committerilliliti <illiliti@protonmail.com>
Sun, 3 Apr 2022 11:55:33 +0000 (14:55 +0300)
Fix invalid usage of bools which violates official meson specification and thus
breaks muon, an implementation of meson written in C.

meson_options.txt

index 61878ceba490272025cc3576cf2c9d6f2f024a18..bb2530d00a086854ba2fc031211b26428be36e2e 100644 (file)
@@ -82,12 +82,12 @@ option('f16c',
 
 option('gtk_doc',
        type: 'boolean',
-       value: 'false',
+       value: false,
        description : 'Build API reference and tools documentation')
 
 option('man-pages',
        type: 'boolean',
-       value: 'false',
+       value: false,
        description : 'Build man pages for installed tools')
 
 option('introspection',
@@ -100,7 +100,7 @@ option('introspection',
 
 option('demos',
        type: 'boolean',
-       value: 'true',
+       value: true,
        description : 'Build demo programs')
 
 option('profile',
@@ -111,15 +111,15 @@ option('profile',
 
 option('build-examples',
        type: 'boolean',
-       value: 'true',
+       value: true,
        description : 'Build examples')
 
 option('build-tests',
        type: 'boolean',
-       value: 'true',
+       value: true,
        description : 'Build tests')
 
 option('install-tests',
        type: 'boolean',
-       value: 'false',
+       value: false,
        description : 'Install tests')