aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-11-21 21:47:51 -0800
committerGitHub <noreply@github.com>2017-11-21 21:47:51 -0800
commitf7c10858f71f7e03b8745cf561108b3e766e4e84 (patch)
treed0eec8fb38dcc5e4604f0e9f355fc405ff2cf195 /toolsrc/include
parent43fece81bddc25b2e560918873be9d8690b1374f (diff)
parentd5a7da6bcb92b551d6f8a9a321deb063f6632dbc (diff)
downloadvcpkg-f7c10858f71f7e03b8745cf561108b3e766e4e84.tar.gz
vcpkg-f7c10858f71f7e03b8745cf561108b3e766e4e84.zip
Merge pull request #1752 from martin-s/patch-vs2013
Added support for VS2013 build chain tools.
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/vcpkgpaths.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg/vcpkgpaths.h b/toolsrc/include/vcpkg/vcpkgpaths.h
index 781dabd1a..0790be785 100644
--- a/toolsrc/include/vcpkg/vcpkgpaths.h
+++ b/toolsrc/include/vcpkg/vcpkgpaths.h
@@ -67,7 +67,7 @@ namespace vcpkg
/// <summary>Retrieve a toolset matching a VS version</summary>
/// <remarks>
- /// Valid version strings are "v140", "v141", and "". Empty string gets the latest.
+ /// Valid version strings are "v120", "v140", "v141", and "". Empty string gets the latest.
/// </remarks>
const Toolset& get_toolset(const Optional<std::string>& toolset_version,
const Optional<fs::path>& visual_studio_path) const;
@@ -83,5 +83,6 @@ namespace vcpkg
Lazy<fs::path> ifw_binarycreator_exe;
Lazy<fs::path> ifw_repogen_exe;
Lazy<std::vector<Toolset>> toolsets;
+ Lazy<std::vector<Toolset>> toolsets_vs2013;
};
}