| Index: pylib/gyp/generator/msvs.py
|
| diff --git a/pylib/gyp/generator/msvs.py b/pylib/gyp/generator/msvs.py
|
| index e85acd832d56faf26d3949dd3f9adfb84c78e528..96ccfaeb32f0bca24c08ea410b2236e0a5817e56 100644
|
| --- a/pylib/gyp/generator/msvs.py
|
| +++ b/pylib/gyp/generator/msvs.py
|
| @@ -1124,6 +1124,8 @@ def _GetLibraries(spec):
|
| unique_libraries_list = []
|
| for entry in reversed(libraries):
|
| library = re.sub('^\-l', '', entry)
|
| + if not os.path.splitext(library)[1]:
|
| + library += '.lib'
|
| if library not in found:
|
| found.add(library)
|
| unique_libraries_list.append(library)
|
|
|