From: Bimba Shrestha Date: Fri, 1 May 2020 14:04:09 +0000 (-0500) Subject: meson msvc build fix X-Git-Tag: v1.4.5^2~53^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=834a8f838a3ba3ba7e24462829b40189f4b70e99;p=thirdparty%2Fzstd.git meson msvc build fix --- diff --git a/build/meson/meson.build b/build/meson/meson.build index 121811e72..970cf3c92 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'])