Using %VS140COMNTOOLS% now for the case if VS is not installed in default location.

This commit is contained in:
Remotion 2016-09-20 21:38:27 +02:00
parent 14dbb584b4
commit 4c4b94d270

View File

@ -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
{