summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilliliti <illiliti@protonmail.com>2022-04-03 14:55:33 +0300
committerMatthias Clasen <mclasen@redhat.com>2022-04-21 19:18:55 -0400
commitaa1921cbefb6c889155b311a53db7db9535f4448 (patch)
tree2a5363b0572c4f382bbce6c988bd197519b8803f
parente2abb0211c9b6c27c262818a8ae6aaaf938b6109 (diff)
downloadgtk+-aa1921cbefb6c889155b311a53db7db9535f4448.tar.gz
meson: Use proper type for bools
Fix invalid usage of bools which violates official meson specification and thus breaks muon, an implementation of meson written in C.
-rw-r--r--meson_options.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 61878ceba4..bb2530d00a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -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')