meson: Remove redudant get_option('buildtype')

This commit is contained in:
Bruno Lopes 2025-10-07 10:33:50 -03:00
parent 4398f12cef
commit fec1b3302d
No known key found for this signature in database

View file

@ -330,7 +330,7 @@ endif
# DEBUG SYMBOLS
debugging_format = 'disabled'
if get_option('buildtype') == 'debug' or get_option('buildtype') == 'debugoptimized'
if buildtype == 'debug' or buildtype == 'debugoptimized'
if not platform_windows
# DWARF symbols for GCC and LLDB on Unix
debugging_format = 'native'