Skip to content

Commit

Permalink
meson: Include space in GTK spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Apr 28, 2024
1 parent 46f284c commit 52a5398
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ if meson.version().version_compare('>= 0.53')
summary({
'Qt 5 support': get_option('qt5'),
'Qt 6 support': get_option('qt') and not get_option('qt5'),
'GTK2 support': get_option('gtk') and not get_option('gtk3'),
'GTK3 support': get_option('gtk3'),
'GTK 2 support': get_option('gtk') and not get_option('gtk3'),
'GTK 3 support': get_option('gtk3'),
}, section: 'GUI Toolkits')

summary({
Expand Down
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
option('gtk', type: 'boolean', value: true,
description: 'Whether GTK support is enabled')
option('gtk3', type: 'boolean', value: false,
description: 'Whether GTK3 support is enabled')
description: 'Whether GTK 3 support is enabled')
option('qt', type: 'boolean', value: true,
description: 'Whether Qt support is enabled')
option('qt5', type: 'boolean', value: false,
Expand Down

0 comments on commit 52a5398

Please sign in to comment.