diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-11-21 21:47:51 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-21 21:47:51 -0800 |
| commit | f7c10858f71f7e03b8745cf561108b3e766e4e84 (patch) | |
| tree | d0eec8fb38dcc5e4604f0e9f355fc405ff2cf195 /toolsrc/include | |
| parent | 43fece81bddc25b2e560918873be9d8690b1374f (diff) | |
| parent | d5a7da6bcb92b551d6f8a9a321deb063f6632dbc (diff) | |
| download | vcpkg-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.h | 3 |
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; }; } |
