From 116b5fe7b9e56a850979b2e5462cb82ef913d21e Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 3 Apr 2020 20:50:07 +0530 Subject: [PATCH] meson: Fix typo --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9f5a420..6afa954 100644 --- a/meson.build +++ b/meson.build @@ -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