From 4c4b94d270f0082212c477cf0695ed4ef9f4fbdd Mon Sep 17 00:00:00 2001 From: Remotion Date: Tue, 20 Sep 2016 21:38:27 +0200 Subject: [PATCH] Using %VS140COMNTOOLS% now for the case if VS is not installed in default location. --- toolsrc/src/post_build_lint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolsrc/src/post_build_lint.cpp b/toolsrc/src/post_build_lint.cpp index 3c4c5938d1c0e5..1d4ca0f67ff0cd 100644 --- a/toolsrc/src/post_build_lint.cpp +++ b/toolsrc/src/post_build_lint.cpp @@ -15,7 +15,7 @@ namespace vcpkg ERROR = 1 }; - static const fs::path DUMPBIN_EXE = R"(C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\dumpbin.exe)"; + static const fs::path DUMPBIN_EXE = R"(%VS140COMNTOOLS%\..\..\VC\bin\dumpbin.exe)"; namespace {