From 834a8f838a3ba3ba7e24462829b40189f4b70e99 Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Fri, 1 May 2020 09:04:09 -0500 Subject: [PATCH] meson msvc build fix --- build/meson/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/meson/meson.build b/build/meson/meson.build index 121811e7..970cf3c9 100644 --- a/build/meson/meson.build +++ b/build/meson/meson.build @@ -68,6 +68,7 @@ zstd_docdir = join_paths(zstd_datadir, 'doc', meson.project_name()) # Built-in options use_debug = get_option('debug') buildtype = get_option('buildtype') +default_library_type = get_option('default_library') # Custom options debug_level = get_option('debug_level') @@ -121,7 +122,7 @@ elif cc_id == compiler_msvc if use_multi_thread msvc_compile_flags += '/MP' endif - if enable_static_runtime + if use_static_runtime msvc_compile_flags += '/MT' endif add_project_arguments(msvc_compile_flags, language: ['c', 'cpp'])