| Index: tools/utils.py
|
| diff --git a/tools/utils.py b/tools/utils.py
|
| index cc37f6a15198e1911ae86236a2114514936ef860..2301d9bd610fdb1398bab74c981bd4a046cbd279 100644
|
| --- a/tools/utils.py
|
| +++ b/tools/utils.py
|
| @@ -97,7 +97,7 @@ def GetWindowsRegistryKeyName(name):
|
|
|
| # Try to guess Visual Studio location when buiding on Windows.
|
| def GuessVisualStudioPath():
|
| - defaultPath = r"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7" \
|
| + defaultPath = r"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7" \
|
| r"\IDE"
|
| defaultExecutable = "devenv.com"
|
|
|
| @@ -142,8 +142,8 @@ def GuessVisualStudioPath():
|
| # Can't find value under the key - continue to the next key.
|
| continue
|
| isExpress = executable != 'devenv.com'
|
| - if not isExpress and subkeyName == '10.0':
|
| - # Stop search since if we found non-Express VS2010 version
|
| + if not isExpress and subkeyName == '12.0':
|
| + # Stop search since if we found non-Express VS2013 version
|
| # installed, which is preferred version.
|
| return installDir, executable
|
| else:
|
|
|