diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2019-09-11 11:29:08 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2019-09-11 11:29:08 -0700 |
commit | 3f025f889c553780d050401b38489494b1ae07e3 (patch) | |
tree | 63b9587bca244cf0ccf8878b3dffc143ce4998aa /python/servo/build_commands.py | |
parent | 93426a035c9e06a362476a17e8ec7137e7856e87 (diff) | |
download | servo-3f025f889c553780d050401b38489494b1ae07e3.tar.gz servo-3f025f889c553780d050401b38489494b1ae07e3.zip |
Pull in CRT runtime on VS 2019 as well
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 5c5cacdc48f..e07a7666e0e 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -951,7 +951,7 @@ def package_msvc_dlls(servo_exe_dir, target, vcinstalldir, vs_version): "msvcp140.dll", "vcruntime140.dll", ] - if target_arch != "aarch64" and vs_version in ("14.0", "15.0"): + if target_arch != "aarch64" and vs_version in ("14.0", "15.0", "16.0"): msvc_deps += ["api-ms-win-crt-runtime-l1-1-0.dll"] # Check if it's Visual C++ Build Tools or Visual Studio 2015 |