meson: do not use strings for bool options

This is deprecated and there is no reason to
do this anyway.
This commit is contained in:
Marvin Scholz 2023-09-04 20:12:11 +02:00 committed by Steve Lhomme
parent e28a7a1bf0
commit c282325941
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
option('vlc',
type : 'boolean',
value : 'true',
value : true,
description : 'Build the VLC executable program.')
option('nls',
@ -52,7 +52,7 @@ option('ssp',
option('winstore_app',
type : 'boolean',
value : 'false',
value : false,
description : 'Build targeted for Windows Store apps')
option('rust',