aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 19:25:47 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 19:25:47 -0800
commit93c3c0648a782b1fa75bae1f200beca6ba871f9a (patch)
tree71bd4a950706baf0810b923ad09bcf0d583755b4 /toolsrc/include
parent7c9db95feccf6e9d01d2e1af6c7012685d8e46b6 (diff)
downloadvcpkg-93c3c0648a782b1fa75bae1f200beca6ba871f9a.tar.gz
vcpkg-93c3c0648a782b1fa75bae1f200beca6ba871f9a.zip
[VS2017] Enable building with v141 toolset
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Environment.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Environment.h b/toolsrc/include/vcpkg_Environment.h
index 9161f7ce5..e4dd47472 100644
--- a/toolsrc/include/vcpkg_Environment.h
+++ b/toolsrc/include/vcpkg_Environment.h
@@ -17,5 +17,11 @@ namespace vcpkg::Environment
const fs::path& get_dumpbin_exe(const vcpkg_paths& paths);
- const fs::path& get_vcvarsall_bat(const vcpkg_paths& paths);
+ struct vcvarsall_and_platform_toolset
+ {
+ fs::path path;
+ std::wstring platform_toolset;
+ };
+
+ const vcvarsall_and_platform_toolset& get_vcvarsall_bat(const vcpkg_paths& paths);
}