| Index: build/vs_toolchain.py
|
| diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py
|
| index e53eab5f2c0e175b19e525c392ecfe8bc8465bae..7f535ea9bb41c317b55af45eb804116f38324f9d 100755
|
| --- a/build/vs_toolchain.py
|
| +++ b/build/vs_toolchain.py
|
| @@ -104,7 +104,7 @@ def _CopyRuntime2013(target_dir, source_dir, dll_pattern):
|
| def _CopyRuntime2015(target_dir, source_dir, dll_pattern):
|
| """Copy both the msvcp and vccorlib runtime DLLs, only if the target doesn't
|
| exist, but the target directory does exist."""
|
| - for file_part in ('msvcp', 'vccorlib'):
|
| + for file_part in ('msvcp', 'vccorlib', 'vcruntime'):
|
| dll = dll_pattern % file_part
|
| target = os.path.join(target_dir, dll)
|
| source = os.path.join(source_dir, dll)
|
|
|