[vlc-commits] [Git][videolan/vlc][master] meson: do not use strings for bool options
    Steve Lhomme (@robUx4) 
    gitlab at videolan.org
       
    Wed Sep  6 13:14:29 UTC 2023
    
    
  
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
c2823259 by Marvin Scholz at 2023-09-06T12:59:59+00:00
meson: do not use strings for bool options
This is deprecated and there is no reason to
do this anyway.
- - - - -
1 changed file:
- meson_options.txt
Changes:
=====================================
meson_options.txt
=====================================
@@ -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',
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c282325941cf3ac530e832fe204cd68a3b3a8b17
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c282325941cf3ac530e832fe204cd68a3b3a8b17
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
    
    
More information about the vlc-commits
mailing list