Skip to content

Commit

Permalink
meson_options.txt: Remove single-quotes from boolean options
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Mar 16, 2024
1 parent b3bb3e4 commit a08bfe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ option(
option(
'build_tests',
type : 'boolean',
value : 'true',
value : true,
description : 'Build tests'
)
option(
'build_examples',
type : 'boolean',
value : 'true',
value : true,
description : 'Build examples'
)

0 comments on commit a08bfe0

Please sign in to comment.