meson: Fix typo

This commit is contained in:
Nirbheek Chauhan 2020-04-03 20:50:07 +05:30
parent 8d9e490ee7
commit 116b5fe7b9
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ vs_crt = 'release'
vs_crt_opt = get_option('b_vscrt')
if vs_crt_opt in ['mdd', 'mtd']
vs_crt = 'debug'
if vs_crt_opt == 'from_buildtype'
elif vs_crt_opt == 'from_buildtype'
if get_option('buildtype') == 'debug'
vs_crt = 'debug'
endif